Created
November 20, 2018 22:33
-
-
Save wesleymonaro/3d47506cac6e47cd58d3b6408763cc70 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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