0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/doc/api/appendix_1.markdown

45 lines
1.5 KiB
Markdown
Raw Normal View History

2010-10-28 14:18:16 +02:00
## Appendix 1 - Third Party Modules
There are many third party modules for Node. At the time of writing, August
2010, the master repository of modules is
[the wiki page](https://github.com/joyent/node/wiki/modules).
2010-10-28 14:18:16 +02:00
This appendix is intended as a SMALL guide to new-comers to help them
quickly find what are considered to be quality modules. It is not intended
to be a complete list. There may be better more complete modules found
elsewhere.
- Module Installer: [npm](https://github.com/isaacs/npm)
2010-10-28 14:18:16 +02:00
- HTTP Middleware: [Connect](https://github.com/senchalabs/connect)
2010-10-28 14:18:16 +02:00
- Web Framework: [Express](https://github.com/visionmedia/express)
2010-10-28 14:18:16 +02:00
2011-10-26 19:07:40 +02:00
- Web Sockets: [Socket.IO](https://github.com/learnboost/socket.io)
2010-10-28 14:18:16 +02:00
- HTML Parsing: [HTML5](https://github.com/aredridel/html5)
2010-10-28 14:18:16 +02:00
- [mDNS/Zeroconf/Bonjour](https://github.com/agnat/node_mdns)
2010-10-28 14:18:16 +02:00
- [RabbitMQ, AMQP](https://github.com/postwait/node-amqp)
2010-10-28 14:18:16 +02:00
- [mysql](https://github.com/felixge/node-mysql)
2010-10-28 14:18:16 +02:00
- Serialization: [msgpack](https://github.com/pgriess/node-msgpack)
2010-10-28 14:18:16 +02:00
- Scraping: [Apricot](https://github.com/silentrob/Apricot)
2010-10-28 14:18:16 +02:00
- Debugger: [ndb](https://github.com/smtlaissezfaire/ndb) is a CLI debugger
[inspector](https://github.com/dannycoates/node-inspector) is a web based
2010-10-28 14:18:16 +02:00
tool.
- [pcap binding](https://github.com/mranney/node_pcap)
2010-10-28 14:18:16 +02:00
- [ncurses](https://github.com/mscdex/node-ncurses)
2010-10-28 14:18:16 +02:00
- Testing/TDD/BDD: [vows](http://vowsjs.org/),
[mocha](https://github.com/visionmedia/mocha),
[mjsunit.runner](https://github.com/tmpvar/mjsunit.runner)
2010-10-28 14:18:16 +02:00
Patches to this list are welcome.