quickstruc
Version:
quickstruc is a Node.js-powered module designed to streamline project scaffolding.
17 lines (13 loc) • 516 B
JavaScript
const app = require("./app");
const { PORT } = require("./config/env");
process.on("unhandledRejection", (error) => {
console.error("Unhandled Rejection:", error);
// Optionally, you can add process.exit() here to gracefully shut down the app
});
process.on("uncaughtException", (error) => {
console.error("Uncaught Exception:", error);
// Optionally, you can add process.exit() here to gracefully shut down the app
});
app.listen(PORT, () => {
console.log("working on Port", PORT);
});