2014-07-11 09:34:45 -04:00
# Awesome Node.js
> A curated list of delightful Node.js [packages](#packages) and [resources](#resources).
Inspired by the [awesome ](https://github.com/sindresorhus/awesome ) list thing.
## Packages
- [Functional programming ](#functional-programming )
- [Command-line apps ](#command-line-apps )
- [HTTP ](#http )
2014-07-25 18:29:52 -04:00
- [Debugging / Profiling ](#debugging--profiling )
2014-07-11 09:34:45 -04:00
- [Logging ](#logging )
- [Web frameworks ](#web-frameworks )
- [Command-line utilities ](#command-line-utilities )
- [Build tools ](#build-tools )
- [Templating ](#templating )
- [Documentation ](#documentation )
- [Filesystem ](#filesystem )
- [Control flow ](#control-flow )
- [Streams ](#streams )
- [Real-time ](#real-time )
- [Date ](#date )
- [Image ](#image )
2014-07-18 20:15:12 -04:00
- [Text ](#text )
2014-07-25 17:49:51 -04:00
- [Math ](#math )
- [Data validation ](#data-validation )
2014-07-12 13:03:00 -04:00
- [Parsing ](#parsing )
2014-07-11 09:34:45 -04:00
- [Humanize ](#humanize )
2014-07-12 13:03:00 -04:00
- [Compression ](#compression )
- [Network ](#network )
2014-07-11 09:34:45 -04:00
- [Static site generators ](#static-site-generators )
- [Content management systems ](#content-management-systems )
2014-07-12 13:14:59 -04:00
- [Forum ](#forum )
- [Blogging ](#blogging )
2014-07-11 09:34:45 -04:00
- [Database ](#database )
- [Testing ](#testing )
- [Minifiers ](#minifiers )
- [Authentication ](#authentication )
- [Node.js management ](#nodejs-management )
- [Polyfills ](#polyfills )
2014-07-12 13:03:00 -04:00
- [AST ](#ast )
- [Weird ](#weird )
2014-07-11 09:34:45 -04:00
- [Miscellaneous ](#miscellaneous )
### Functional programming
- [Lo-Dash ](http://lodash.com ) - A utility library delivering consistency, customization, performance, & extras. A better and faster Underscore.js.
- [Mout ](http://moutjs.com ) - Utility library with the biggest difference between other existing solutions is that you can choose to load only the modules/functions that you need, no extra overhead.
2014-07-25 18:29:52 -04:00
- [mori ](http://swannodette.github.io/mori/ ) - A library for using ClojureScript's persistent data structures and supporting API from the comfort of vanilla JavaScript.
2014-07-13 18:06:28 -04:00
- [Folktale ](http://folktale.github.io/ ) - A suite of libraries for generic functional programming in JavaScript that allows you to write elegant modular applications with fewer bugs, and more reuse.
2014-07-11 09:34:45 -04:00
### Command-line apps
- [npm ](https://github.com/npm/npm/ ) - A package-manager for Node.js.
- [Bower ](http://bower.io ) - A package manager for the web.
- [Yo ](https://github.com/yeoman/yo ) - Run Yeoman generators.
- [Pageres ](https://github.com/sindresorhus/pageres ) - Responsive website screenshots.
2014-07-19 14:52:06 -04:00
- [PM2 ](https://github.com/Unitech/pm2 ) - Advanced Process Manager for Node.js.
2014-07-11 09:34:45 -04:00
- [trash ](https://github.com/sindresorhus/trash ) - A safer alternative to `rm` .
- [ESLint ](http://eslint.org ) - The pluggable linting utility for JavaScript.
- [JSHint ](http://jshint.com ) - A community-driven tool to detect errors and potential problems in JavaScript code.
- [cpy ](https://github.com/sindresorhus/cpy ) - Copy files.
2014-07-12 13:03:00 -04:00
- [torrent ](https://github.com/maxogden/torrent ) - Download torrents.
- [David ](https://github.com/alanshaw/david ) - Tells you when your package npm dependencies are out of date.
2014-07-15 05:00:37 -04:00
- [vtop ](https://github.com/MrRio/vtop ) - More better top, with nice charts.
2014-07-25 18:29:52 -04:00
- [tmpin ](https://github.com/sindresorhus/tmpin ) - Adds stdin support to any CLI app that accepts file input.
2014-07-29 20:18:27 -04:00
- [normit ](https://github.com/pawurb/normit ) - Google Translate with speech synthesis in your terminal.
2014-07-11 09:34:45 -04:00
### HTTP
- [request ](https://github.com/mikeal/request ) - Simplified HTTP request client.
- [got ](https://github.com/sindresorhus/got ) - A nicer interface to the built-in `http` module.
- [superagent ](https://github.com/visionmedia/superagent ) - A small progressive HTTP request library.
- [hyperquest ](https://github.com/substack/hyperquest ) - Streaming HTTP requests.
2014-07-25 18:29:52 -04:00
### Debugging / Profiling
- [node-inspector ](https://github.com/node-inspector/node-inspector ) - Debugger based on Blink Developer Tools.
- [Theseus ](https://github.com/adobe-research/theseus ) - A new type of JavaScript debugger featuring real-time code coverage, retroactive inspection and asynchronous call tree.
- [longjohn ](https://github.com/mattinsler/longjohn ) - Long stack traces with configurable call trace length.
- [debug ](https://github.com/visionmedia/debug ) - Tiny debugging utility.
- [jstrace ](https://github.com/jstrace/jstrace ) - Dynamic tracing for JavaScript, similar to dtrace, ktap etc.
- [TraceGL ](https://github.com/traceglMPL/tracegl ) - Transforms your JavaScript, injecting monitoring code that produces a log of everything that happens.
2014-07-11 09:34:45 -04:00
### Logging
- [winston ](https://github.com/flatiron/winston ) - A multi-transport async logging library.
- [Bunyan ](https://github.com/trentm/node-bunyan ) - A simple and fast JSON logging library.
### Web frameworks
- [Koa ](http://koajs.com ) - A new web framework designed by the team behind Express, which aims to be a smaller, more expressive, and more robust foundation for web applications and APIs.
- [Express ](http://expressjs.com ) - A minimal and flexible web application framework, providing a robust set of features for building single and multi-page, and hybrid web applications.
2014-07-12 13:03:00 -04:00
- [Hapi ](http://hapijs.com ) - A rich framework for building applications and services.
- [Meteor ](https://www.meteor.com ) - An ultra-simple, database-everywhere, data-on-the-wire, pure-Javascript web framework.
- [SailsJS ](http://sailsjs.org ) - An MVC web framework with a modern twist, supporting WebSockets, streams, and a data-driven API.
2014-07-25 17:44:23 -04:00
- [Restify ](http://mcavage.me/node-restify/ ) - A node framework built specifically to enable you to build correct REST web services.
2014-07-11 09:34:45 -04:00
### Command-line utilities
- [chalk ](https://github.com/sindresorhus/chalk ) - Terminal string styling done right.
- [minimist ](https://github.com/substack/minimist ) - Parse command-line flags
- [Inquirer.js ](https://github.com/SBoudrias/Inquirer.js ) - Interactive command-line prompt.
- [update-notifier ](https://github.com/yeoman/update-notifier ) - Update notifications for your CLI app.
- [sudo-block ](https://github.com/sindresorhus/sudo-block ) - Block users from running your app with root permissions.
2014-07-12 13:03:00 -04:00
- [configstore ](https://github.com/yeoman/configstore ) - Easily load and persist config without having to think about where and how.
- [insight ](https://github.com/yeoman/insight ) - Helps you understand how your tool is being used by anonymously reporting usage metrics to Google Analytics.
2014-07-11 09:34:45 -04:00
- [blessed ](https://github.com/chjj/blessed ) - A curses-like library.
- [cli-table ](https://github.com/LearnBoost/cli-table ) - Pretty unicode tables.
2014-07-15 04:57:17 -04:00
- [drawille ](https://github.com/madbence/node-drawille ) - Draw on the terminal with unicode braille characters.
2014-07-22 11:04:21 -04:00
- [progress ](https://github.com/visionmedia/node-progress ) - Flexible ascii progress bar.
2014-07-25 18:29:52 -04:00
- [log-symbols ](https://github.com/sindresorhus/log-symbols ) - Colored symbols for various log levels.
- [columnify ](https://github.com/timoxley/columnify ) - Create text-based columns suitable for console output. Supports cell wrapping.
2014-07-11 09:34:45 -04:00
### Build tools
- [gulp.js ](http://gulpjs.com ) - Streaming and fast build system that favors code over config.
- [grunt ](http://gruntjs.com ) - Task runner that can perform repetitive tasks like minification, compilation, unit testing, linting, etc.
- [Broccoli ](https://github.com/broccolijs/broccoli ) - A fast, reliable asset pipeline, supporting constant-time rebuilds and compact build definitions.
2014-07-28 05:59:30 -04:00
- [browserify ](https://github.com/substack/node-browserify ) - Browser-side require() the Node.js way.
2014-07-11 09:34:45 -04:00
### Templating
2014-07-18 17:00:02 -04:00
- [handlebars.js ](https://github.com/wycats/handlebars.js/ ) - A superset of Mustache templates which adds powerful features like helpers and more advanced blocks.
- [hogan.js ](http://twitter.github.io/hogan.js/ ) - Twitter's small, fast, phase-separated compiler for Mustache templates.
2014-07-11 09:34:45 -04:00
- [Jade ](https://github.com/visionmedia/jade ) - High performance template engine heavily influenced by Haml.
- [nunjucks ](https://github.com/mozilla/nunjucks ) - A powerful templating engine with inheritance, asynchronous control, and more (jinja2 inspired).
### Documentation
- [Docco ](http://jashkenas.github.io/docco/ ) - A quick-and-dirty documentation generator which produces an HTML document that displays your comments intermingled with your code.
- [JSDoc ](http://usejsdoc.org ) - API documentation generator similar to JavaDoc or PHPDoc.
- [dox ](https://github.com/visionmedia/dox ) - JavaScript documentation generator for Node.js using Markdown and JSDoc.
2014-07-12 23:43:00 -04:00
- [jsdox ](https://github.com/sutoiku/jsdox ) - JSDoc3 to Markdown documentation generator.
2014-07-11 09:34:45 -04:00
### Filesystem
- [del ](https://github.com/sindresorhus/del ) - Delete files/folders using globs.
- [globby ](https://github.com/sindresorhus/globby ) - Glob files with support for multiple patterns.
- [cpy ](https://github.com/sindresorhus/cpy ) - Copy files.
- [rimraf ](https://github.com/isaacs/rimraf ) - Recursively delete files like `rm -rf` .
- [mkdirp ](https://github.com/substack/node-mkdirp ) - Recursively create directories like `mkdir -p` .
- [graceful-fs ](https://github.com/isaacs/node-graceful-fs ) - Drop-in replacement for the `fs` module with various improvements.
2014-07-12 13:03:00 -04:00
- [fs-extra ](https://github.com/jprichardson/node-fs-extra ) - Extra methods for the `fs` module.
2014-07-11 09:34:45 -04:00
### Control flow
2014-07-25 18:29:52 -04:00
- Callbacks
- [each-async ](https://github.com/sindresorhus/each-async ) - Async concurrent iterator like forEach.
- [async ](https://github.com/caolan/async ) - Provides straight-forward, powerful functions for working with asynchronousity.
- Generators
- [co ](https://github.com/visionmedia/co ) - The ultimate generator based flow-control goodness.
- Promises
- [native-promise-only ](https://www.npmjs.org/package/native-promise-only ) - A polyfill for native ES6 Promises.
- [Bluebird ](https://github.com/petkaantonov/bluebird ) - A fully featured promise library with focus on innovative features and performance.
- [Q ](https://github.com/kriskowal/q ) - A tool for making and composing asynchronous promises.
- Streams
- [Highland.js ](http://highlandjs.org ) - Manages synchronous and asynchronous code easily, using nothing more than standard JavaScript and Node-like Streams.
2014-07-11 09:34:45 -04:00
### Streams
- [through2 ](https://github.com/rvagg/through2 ) - Tiny wrapper around Node streams2 Transform to avoid explicit subclassing noise.
- [concat-stream ](https://github.com/maxogden/concat-stream ) - Concatenates a stream into strings or binary data.
- [simple-bufferstream ](https://github.com/rvagg/node-simple-bufferstream ) - Turn a Buffer into a ReadableStream.
- [co-stream ](https://github.com/juliangruber/co-stream ) - [co ](https://github.com/visionmedia/co ) generator stream.
- [byline ](https://www.npmjs.org/package/byline ) - Super-simple line-by-line Stream reader.
2014-07-25 18:29:52 -04:00
- [first-chunk-stream ](https://github.com/sindresorhus/first-chunk-stream ) - Transform the first chunk in a stream.
2014-07-11 09:34:45 -04:00
### Real-time
- [Socket.io ](http://socket.io ) - Enables real-time bidirectional event-based communication.
2014-07-13 09:23:41 -04:00
- [SocketCluster ](https://github.com/topcloud/socketcluster ) - Scalable HTTP + WebSocket engine which can run on multiple CPU cores.
2014-07-13 03:25:04 -04:00
- [Primus ](https://github.com/primus/primus ) - An abstraction layer for real-time frameworks to prevent module lock-in.
2014-07-11 09:34:45 -04:00
### Date
- [Moment.js ](http://momentjs.com ) - Parse, validate, manipulate, and display dates.
- [dateformat ](https://github.com/felixge/node-dateformat ) - Date formatting.
### Image
- [sharp ](https://github.com/lovell/sharp ) - The fastest module for resizing JPEG, PNG, WebP and TIFF images.
2014-07-12 13:03:00 -04:00
- [image-type ](https://github.com/sindresorhus/image-type ) - Detect the image type of a Buffer/Uint8Array.
- [gm ](https://github.com/aheckmann/gm ) - GraphicsMagick and ImageMagick wrapper.
### Text
- [Underscore.string ](https://github.com/epeli/underscore.string ) - Collection of string manipulation utilities.
- [he ](https://github.com/mathiasbynens/he ) - A robust HTML entity encoder/decoder.
- [iconv-lite ](https://github.com/ashtuchkin/iconv-lite ) - Convert character encodings.
- [escape-string-regexp ](https://github.com/sindresorhus/escape-string-regexp ) - Escape RegExp special characters.
- [indent-string ](https://github.com/sindresorhus/indent-string ) - Indent each line in a string.
- [strip-indent ](https://github.com/sindresorhus/strip-indent ) - Strip leading whitespace from every line in a string.
2014-07-25 18:29:52 -04:00
- [detect-indent ](https://github.com/sindresorhus/detect-indent ) - Detect the indentation of code.
2014-07-25 17:44:23 -04:00
- [i18n-node ](https://github.com/mashpie/i18n-node ) - Lightweight simple translation module for node.js / express.js with dynamic json storage.
2014-07-12 13:03:00 -04:00
### Math
- [ndarray ](https://github.com/mikolalysenko/ndarray ) - Multidimensional arrays.
2014-07-25 17:44:23 -04:00
- [mathjs ](https://github.com/josdejong/mathjs ) - An extensive math library for JavaScript and Node.js.
2014-07-12 13:03:00 -04:00
2014-07-25 17:49:51 -04:00
### Data validation
- [joi ](https://github.com/spumko/joi ) - Object schema description language and validator for JavaScript objects.
2014-07-12 13:03:00 -04:00
### Parsing
- [css ](https://github.com/reworkcss/css ) - CSS parser / stringifier.
- [strip-json-comments ](https://github.com/sindresorhus/strip-json-comments ) - Strip comments from JSON.
- [marked ](https://github.com/chjj/marked ) - A markdown parser and compiler built for speed.
- [js-yaml ](https://github.com/nodeca/js-yaml ) - Very fast YAML parser.
- [URI.js ](https://github.com/medialize/URI.js ) - URL mutation.
2014-07-23 09:06:19 -04:00
- [JSONStream ](https://github.com/dominictarr/JSONStream ) - Streaming JSON.parse and stringify.
2014-07-25 18:29:52 -04:00
- [csv-parser ](https://github.com/mafintosh/csv-parser ) - Streaming CSV parser that aims to be faster than everyone else.
2014-07-29 09:39:41 -04:00
- [excel-stream ](https://github.com/dominictarr/excel-stream ) - Streaming Excel spreadsheet to JSON parser.
2014-07-11 09:34:45 -04:00
### Humanize
- [pretty-bytes ](https://github.com/sindresorhus/pretty-bytes ) - Convert bytes to a human readable string: `1337` → `1.34 kB` .
- [pretty-ms ](https://github.com/sindresorhus/pretty-ms ) - Convert milliseconds to a human readable string: `1337000000` → `15d 11h 23m 20s` .
2014-07-12 13:03:00 -04:00
- [ms ](https://github.com/guille/ms.js ) - Tiny milisecond conversion utility.
- [pretty-error ](https://github.com/AriaMinaei/pretty-error ) - Errors with less clutter.
- [humanize ](https://github.com/taijinlee/humanize ) - Data formatter for human readability.
2014-07-14 06:49:22 -04:00
- [node-read ](https://github.com/bndr/node-read ) - Extract readable content from any page.
2014-07-12 13:03:00 -04:00
### Compression
2014-07-28 07:33:52 -04:00
- [Archiver ](https://github.com/ctalkington/node-archiver ) - Streaming interface for archive generation, supporting ZIP and TAR.
2014-07-12 13:03:00 -04:00
- [decompress-zip ](https://github.com/bower/decompress-zip ) - Unzip.
2014-07-28 07:33:52 -04:00
- [tar-stream ](https://github.com/mafintosh/tar-stream ) - Streaming tar parser and generator. Also see [tar-fs ](https://github.com/mafintosh/tar-fs ).
2014-07-12 13:03:00 -04:00
### Network
- [get-port ](https://github.com/sindresorhus/get-port ) - Get an available port.
2014-07-11 09:34:45 -04:00
### Static site generators
- [Metalsmith ](http://www.metalsmith.io ) - An extremely simple, pluggable static site generator.
- [Wintersmith ](http://wintersmith.io ) - Flexible, minimalistic, multi-platform static site generator.
- [Assemble ](http://assemble.io ) - Static site generator for Node.js, Grunt.js, and Yeoman.
### Content management systems
- [KeystoneJS ](http://keystonejs.com ) - CMS and web application platform built on Express and MongoDB.
- [Calipso ](http://calip.so ) - A simple content management system, built along similar themes to Drupal and Wordpress, that is designed to be fast, flexible and simple.
2014-07-25 17:51:40 -04:00
- [Apostrophe2 ](http://apostrophenow.org/ ) - A content management system with an emphasis on intuitive front end content editing and administration built on Express and MongoDB.
2014-07-11 09:34:45 -04:00
2014-07-12 13:16:22 -04:00
2014-07-12 13:14:59 -04:00
### Forum
2014-07-12 13:16:22 -04:00
- [nodeBB ](https://nodebb.org ) - A better forum platform for the modern web.
2014-07-12 13:14:59 -04:00
### Blogging
2014-07-12 13:16:22 -04:00
- [ghost ](https://ghost.org ) - Simple, powerful publishing platform that allows you to share your story with the world.
- [Hexo ](http://hexo.io ) - Fast, simple and powerful blogging framework.
2014-07-11 09:34:45 -04:00
### Database
2014-07-14 15:54:17 -04:00
- Drivers
- [LevelUP ](https://github.com/rvagg/node-levelup ) - LevelDB, Node.js style.
- [MongoDB ](https://github.com/mongodb/node-mongodb-native ) - Native MongoDB driver for Node.js.
- [MySQL ](https://github.com/felixge/node-mysql ) - A pure Node.js JavaScript Client implementing the MySQL protocol.
2014-07-24 14:27:33 -04:00
- [PostgreSQL ](https://github.com/brianc/node-postgres ) - PostgreSQL client for node.js. Pure JavaScript and native libpq bindings.
2014-07-14 15:54:17 -04:00
- [Redis ](https://github.com/mranney/node_redis ) - Redis client for Node.js.
- ODM / ORM
2014-07-15 12:17:51 -04:00
- [Bookshelf ](http://bookshelfjs.org/ ) - A Node.js ORM for PostgreSQL, MySQL and SQLite3 in the style of Backbone.js.
2014-07-28 12:37:25 -04:00
- [JugglingDB ](https://github.com/1602/jugglingdb ) - Multi-database ORM: Redis, MongoDB, MySQL, SQLite, PostgreSQL, Neo4j, memory... Many databases, common API.
2014-07-15 02:58:31 -04:00
- [Mongoose ](http://mongoosejs.com/ ) - Elegant MongoDB object modeling for Node.js.
2014-07-14 15:54:17 -04:00
- [Sequelize ](https://github.com/sequelize/sequelize ) - Multi-dialect ORM. Supports SQLite, MySQL, PostgreSQL.
2014-07-15 07:00:39 -04:00
- Query builder
- [Knex ](http://knexjs.org/ ) - A query builder for PostgreSQL, MySQL and SQLite3, designed to be flexible, portable, and fun to use.
2014-07-11 09:34:45 -04:00
### Testing
- [tape ](https://github.com/substack/tape ) - [TAP ](http://testanything.org )-producing test harness.
- [Mocha ](http://visionmedia.github.io/mocha/ ) - A feature-rich test framework making asynchronous testing simple and fun.
2014-07-19 13:56:42 -04:00
- [loadtest ](https://github.com/alexfernandez/loadtest ) - Run load tests for your web application, with an API for automation.
2014-07-11 09:34:45 -04:00
### Minifiers
2014-07-12 13:03:00 -04:00
- [UglifyJS2 ](http://lisperator.net/uglifyjs/ ) - JavaScript minifier.
- [clean-css ](https://github.com/GoalSmashers/clean-css ) - CSS minifier.
2014-07-11 09:34:45 -04:00
- [minimize ](https://github.com/Moveo/minimize ) - HTML minifier.
2014-07-12 13:03:00 -04:00
- [imagemin ](https://github.com/kevva/imagemin ) - Image minifier.
2014-07-11 09:34:45 -04:00
### Authentication
- [Passport ](http://passportjs.org ) - Simple, unobtrusive authentication.
2014-07-25 18:29:52 -04:00
- [everyauth ](https://github.com/bnoguchi/everyauth ) - Authentication and authorization (password, facebook, & more) for your Connect and Express apps.
2014-07-11 09:34:45 -04:00
### Node.js management
- [n ](https://github.com/visionmedia/n ) - Node.js version management.
- [nave ](https://github.com/isaacs/nave ) - Virtual Environments for Node.js.
2014-07-12 05:29:48 -04:00
- [nodeenv ](https://github.com/ekalinin/nodeenv ) - A Node.js virtual environment compatible to Python's virtualenv.
2014-07-11 09:34:45 -04:00
### Polyfills
2014-07-12 13:03:00 -04:00
- [object-assign ](https://github.com/sindresorhus/object-assign ) - ES6 Object.assign() polyfill.
- [harmony-reflect ](https://github.com/tvcutsem/harmony-reflect ) - ES6 Reflect and Proxy polyfill.
- [es6-shim ](https://github.com/paulmillr/es6-shim ) - Collection of ES6 polyfills.
- More ES6 polyfills at [es6-tools ](https://github.com/addyosmani/es6-tools#polyfills ).
### AST
2014-07-29 09:20:57 -04:00
- [Acorn ](https://github.com/marijnh/acorn/ ) - A tiny, fast JavaScript parser.
2014-07-12 13:03:00 -04:00
- [Rocambole ](https://github.com/millermedeiros/rocambole ) - Recursively walk and transform JavaScript AST.
### Weird
- [superb ](https://github.com/sindresorhus/superb ) - Get superb like words.
- [cool-ascii-faces ](https://github.com/maxogden/cool-ascii-faces ) - Get some cool ascii faces.
2014-07-11 09:34:45 -04:00
### Miscellaneous
- [multiline ](https://github.com/sindresorhus/multiline ) - Multiline strings in JavaScript.
2014-07-12 13:03:00 -04:00
- [opn ](https://github.com/sindresorhus/opn ) - Opens stuff like websites, files, executables.
2014-07-11 09:34:45 -04:00
- [semver ](https://github.com/isaacs/node-semver ) - [semver ](http://semver.org ) parser.
- [cheerio ](https://github.com/cheeriojs/cheerio ) - Fast, flexible, and lean implementation of core jQuery designed specifically for the server.
2014-07-25 18:29:52 -04:00
- [require-uncached ](https://github.com/sindresorhus/require-uncached ) - Require a module bypassing the cache.
2014-07-12 13:03:00 -04:00
- [Faker.js ](https://github.com/Marak/Faker.js ) - Generate massive amounts of fake data.
2014-07-28 12:26:54 -04:00
- [peerflix ](https://github.com/mafintosh/peerflix ) - Streaming torrent client.
2014-07-29 09:34:02 -04:00
- [BitcoinJS ](http://bitcoinjs.org/ ) - The clean, readable, proven library for Bitcoin JavaScript development.
2014-07-11 09:34:45 -04:00
## Resources
### Tutorials
- [Nodeschool ](http://nodeschool.io ) - Learn Node.js with interactive lessons.
- [The Art of Node ](https://github.com/maxogden/art-of-node/#the-art-of-node ) - An introduction to Node.js.
- [stream-handbook ](https://github.com/substack/stream-handbook ) - How to write Node.js programs with streams.
2014-07-15 05:07:38 -04:00
- [browserify-handbook ](https://github.com/substack/browserify-handbook ) - The definitive guide for browserify.
2014-07-11 09:34:45 -04:00
### Articles
- [Error Handling in Node.js ](http://www.joyent.com/developers/node/design/errors )
### Videos
- [Introduction to Node.js with Ryan Dahl ](https://www.youtube.com/watch?v=jo_B4LTHi3I )
### Podcasts
- [NodeUp ](http://nodeup.com )
### Books
- [Node.js in Action ](http://www.amazon.com/Node-js-Action-Mike-Cantelon/dp/1617290572 )
2014-07-13 19:35:37 -04:00
- [Mastering Node ](http://visionmedia.github.io/masteringnode/ )
- [Professional Node.js: Building Javascript Based Scalable Software ](http://www.amazon.com/Professional-Node-js-Building-Javascript-Scalable-ebook/dp/B009L7QETY/ )
2014-07-11 09:34:45 -04:00
2014-07-12 13:03:00 -04:00
### Blogs
- [Node.js blog ](http://blog.nodejs.org )
- [HowToNode ](http://howtonode.org ) - Teaching how to do various tasks in Node.js as well as teach fundamental concepts that are needed to write effective code.
2014-07-11 09:34:45 -04:00
### Courses
- [Real Time Web with Node.js ](http://node.codeschool.com )
2014-07-11 14:50:56 -04:00
### Tools
2014-07-12 13:03:00 -04:00
- [GitHub Linker ](https://chrome.google.com/webstore/detail/github-linker/jlmafbaeoofdegohdhinkhilhclaklkp ) - Chrome extension that linkifies dependencies in package.json on GitHub.
2014-07-11 09:34:45 -04:00
## Contribute
Contributions welcome! Read the [contribution guidelines ](contributing.md ) first.
## License
[![CC0 ](http://i.creativecommons.org/p/zero/1.0/88x31.png )](http://creativecommons.org/publicdomain/zero/1.0/)
To the extent possible under law, [Sindre Sorhus ](http://sindresorhus.com ) has waived all copyright and related or neighboring rights to this work.