Skip to content

Instantly share code, notes, and snippets.

@quentinchap
Last active October 12, 2017 07:45
Show Gist options
  • Save quentinchap/dae466a87c902a0666bc23bfe09adefb to your computer and use it in GitHub Desktop.
Save quentinchap/dae466a87c902a0666bc23bfe09adefb to your computer and use it in GitHub Desktop.
Gist dans le cadre d'un article sur https://devotics.fr
// Création de la route /hello
app.get('/hello', function(req, res) {
// Récupération du paramètre "name"
var name = req.param('name');
// Création et envoi de la réponse
res.send('GET: Hello ' + name);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment