Skip to content

Instantly share code, notes, and snippets.

@julioflima
Last active September 6, 2020 09:52
Show Gist options
  • Save julioflima/f81dfa4a5b32a6b0ca24575d0c5c6951 to your computer and use it in GitHub Desktop.
Save julioflima/f81dfa4a5b32a6b0ca24575d0c5c6951 to your computer and use it in GitHub Desktop.
Server listener.
const Routes = require('./Routes');
const App = require('./App.js');
const routes = new Routes();
const app = new App(routes).server;
app.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment