Skip to content

Instantly share code, notes, and snippets.

@felipegenuino
Created March 23, 2020 15:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save felipegenuino/1c04a2b425c3ea186ec0ea543bfa9d6c to your computer and use it in GitHub Desktop.
Save felipegenuino/1c04a2b425c3ea186ec0ea543bfa9d6c to your computer and use it in GitHub Desktop.
Basic express
const express = require('express');
const app = express();
app.get('/', (request, response)=>{
return response.json({
evento: 'Semana Corona Virus',
aluno: 'Felipe Genuino'
})
})
app.listen(3333)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment