Skip to content

Instantly share code, notes, and snippets.

@matthewrevell
Last active August 29, 2015 14:18
Show Gist options
  • Save matthewrevell/177eb09b86f445ce08df to your computer and use it in GitHub Desktop.
Save matthewrevell/177eb09b86f445ce08df to your computer and use it in GitHub Desktop.
From the "First steps with Node.js and Couchbase Server" blog post on blog.couchbase.com
// Let's use Express
var express = require('express');
var app = express();
// And bodyParser to handle our form input
var bodyParser = require('body-parser');
var urlEncodedParser = bodyParser.urlencoded({ extended: false });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment