Dustin Tauer, Easel Solutions
http://github.com/dtauer/hdc2014-nodejs
Dustin@easelsolutions.com
@dtauer
Dustin@easelsolutions.com
@dtauer
"Node.js is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices."
- nodejs.org
nodejs.org
Install Node Package Modules (NPM) to do all kinds of lovely things. Think Ruby Gems.
package.json - information of the application, repo, author, dependency, development dependency
#Installing module
npm install -g http-server
# Options:
# -g global (It might need administrator access)
# --save saves module dependency directly to package.json
# --save-dev saves module under dev dependency
# All third party modules will be located node_modules/
**Grunt.js is another great option
Nodejs.org
npmjs.org
nodeschool.io
hmphry.com/gulp/
Yeoman for scaffolding applications
http://yeoman.io/
Bower for managing packages
http://bower.io/
Dustin@easelsolutions.com
@dtauer