Skip to content

Instantly share code, notes, and snippets.

@rcgalbo
Last active March 7, 2018 03:22
Show Gist options
  • Save rcgalbo/231643541645044d6ae630f7d379df01 to your computer and use it in GitHub Desktop.
Save rcgalbo/231643541645044d6ae630f7d379df01 to your computer and use it in GitHub Desktop.
express app boilerplate
var express = require('express');
var bodyParser = require('body-parser');
var app = express();
app.set('view engine', 'ejs');
app.use(bodyParser.urlencoded({ extended: false }))
app.listen(4000, function() {
console.log('server is listening!!');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment