jdx / mean-sample

Sample project for Write Modern Web Apps with the MEAN Stack by Jeff Dickey
https://mean-sample.herokuapp.com
166 stars 90 forks source link

Sample project for Write Modern Web Apps with the MEAN Stack by Jeff Dickey

Write Modern Web Apps with the MEAN Stack

Chapters

If you see anything that is confusing, seems like a step is skipped, or that is different from the book than here, please submit an issue. I want to make sure this code is as helpful as possible and should get back to you quickly.

Changes

Express res.send -> res.sendStatus

Express deprecated the syntax for simple HTTP responses. You used to be able to say res.send(401) and it would reply 'Unauthorized' along with the HTTP code, this is deprecated in favor of res.sendStatus(401) which does the same thing.