Spaces:
Runtime error
Runtime error
| const { app, Port } = require('./app') | |
| const banner = require('./src/source/banner') | |
| app.listen(Port, '0.0.0.0', () => { | |
| console.log(` | |
| ${banner} | |
| ================================================= | |
| ๐ Server Running at: http://0.0.0.0:${Port} | |
| ================================================= | |
| `) | |
| }) | |
| process.on("uncaughtException", (err) => console.error(` | |
| ================================================= | |
| Uncaught Exception: | |
| ${err} | |
| ================================================= | |
| `)) | |