Skip to content

Instantly share code, notes, and snippets.

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