diff --git a/README.md b/README.md index ab090980a1..ed49096013 100644 --- a/README.md +++ b/README.md @@ -73,11 +73,11 @@ Prerequisites - [MongoDB](http://www.mongodb.org/downloads) - [Node.js](http://nodejs.org) - Command Line Tools - - **Mac OS X**: [Xcode](https://itunes.apple.com/us/app/xcode/id497799835?mt=12) (or **OS X 10.9 Mavericks**: `xcode-select --install`) - - **Windows**: [Visual Studio](http://www.visualstudio.com/downloads/download-visual-studio-vs#d-express-windows-8) - - **Ubuntu**: `sudo apt-get install build-essential` - - **Fedora**: `sudo yum groupinstall "Development Tools"` - - **OpenSUSE**: `sudo zypper install --type pattern devel_basis` + -  **Mac OS X**: [Xcode](https://itunes.apple.com/us/app/xcode/id497799835?mt=12) (or **OS X 10.9 Mavericks**: `xcode-select --install`) + -  **Windows**: [Visual Studio](http://www.visualstudio.com/downloads/download-visual-studio-vs#d-express-windows-8) + -  **Ubuntu**: `sudo apt-get install build-essential` + -  **Fedora**: `sudo yum groupinstall "Development Tools"` + -  **OpenSUSE**: `sudo zypper install --type pattern devel_basis` :exclamation: **Note**: If you are new to Node.js or Express framework, I highly recommend watching [Node.js and Express 101](http://www.youtube.com/watch?v=BN0JlMZCtNU) screencast by Alex Ford that teaches Node and Express from scratch. Alternatively, here is another great tutorial for complete beginners - [Getting Started With Node.js, Express, MongoDB](http://cwbuecheler.com/web/tutorials/2013/node-express-mongo/). @@ -503,7 +503,7 @@ to "info" and "success" flash messages, and you could even create a new one your **Data Usage Controller (Example)** ``` -req.flash('warning', 'You have exceeded 90% of your data usage'); +req.flash('warning', {msg: 'You have exceeded 90% of your data usage'}); ``` **User Account Page (Example)**