Skip to content

Instantly share code, notes, and snippets.

@base698
Last active August 29, 2015 13:59
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 base698/10947555 to your computer and use it in GitHub Desktop.
Save base698/10947555 to your computer and use it in GitHub Desktop.
npm install express
# server.js
var app = require('express')();
app.post('/myform', function(req, res) {
var formData = req.body;
console.log(formData);
})
app.listen(3000);
#
$ node server.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment