Skip to content

Instantly share code, notes, and snippets.

@portothree
Created June 27, 2019 21:50
Show Gist options
  • Save portothree/f18aae2b5bcc8c154836f00990e686a5 to your computer and use it in GitHub Desktop.
Save portothree/f18aae2b5bcc8c154836f00990e686a5 to your computer and use it in GitHub Desktop.
const express = require('express');
const app = express();
const port = 3333;
app.listen(port, () => {
console.log('O servidor está rodando na porta', port);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment