Last active
August 29, 2015 14:18
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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