Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 609 Bytes

README.md

File metadata and controls

20 lines (12 loc) · 609 Bytes

Learn All The Nodes Episode 26

What's new in Express 4 (Part 1 - the middleware)

View the episode

Notes

[Opening graphic](http://openclipart.org/detail/160939/salesman---1911-by-j4p4n)
[body-parser](https://github.com/expressjs/body-parser)

// Installing body-parser
npm install --save body-parser

// In the app
var bodyParser = require('body-parser')
app.use(bodyParser.urlencoded({extended:false}))

Episode code