Skip to content

Instantly share code, notes, and snippets.

@radzserg
Created October 12, 2021 16:45
Show Gist options
  • Save radzserg/3a7dee4b06305ac5377a600dcdfcca91 to your computer and use it in GitHub Desktop.
Save radzserg/3a7dee4b06305ac5377a600dcdfcca91 to your computer and use it in GitHub Desktop.
const app = express();
const PORT = 8000;
const diContainer = configureDI();
configureRouter(app, diContainer)
app.listen(PORT, () => {
console.log(`⚡️[server]: Server is running at http://localhost:${PORT}`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment