Skip to content

Instantly share code, notes, and snippets.

@wesleymonaro
Created November 20, 2018 22:33
Show Gist options
  • Save wesleymonaro/3d47506cac6e47cd58d3b6408763cc70 to your computer and use it in GitHub Desktop.
Save wesleymonaro/3d47506cac6e47cd58d3b6408763cc70 to your computer and use it in GitHub Desktop.
const app = require('express')();
app.get('/users', (req, res) => res.send('Hello Users API'));
app.listen(3001, () => console.log(`Users API listening on port 3001!`));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment