Skip to content

Instantly share code, notes, and snippets.

@paulobunga
Created January 28, 2019 12:43
Show Gist options
  • Save paulobunga/39d7b6978c21c5c591381bea4da09317 to your computer and use it in GitHub Desktop.
Save paulobunga/39d7b6978c21c5c591381bea4da09317 to your computer and use it in GitHub Desktop.
NodeJS Restful API
const express = require('express');
const userRoutes = require('./routes/user-routes');
const app = express();
app.use('/', userRoutes);
app.listen(3000, () => { console.log('App is running on port 3000') });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment