Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2012-08-23 01:58:34 +0400
committerBert Belder <bertbelder@gmail.com>2012-08-23 01:58:34 +0400
commit99ad52ecbe99df14e46d1a6bcd20d8c848fd6296 (patch)
treed1b96b3274b54568b9bbb27c093080c02447d2db /doc
parent0407ecfcfbf0bf31951177be6ed14bf84051a592 (diff)
doc: remote the "recommended modules" section
Diffstat (limited to 'doc')
-rw-r--r--doc/api/_toc.markdown2
-rw-r--r--doc/api/all.markdown1
-rw-r--r--doc/api/appendix_1.markdown46
3 files changed, 0 insertions, 49 deletions
diff --git a/doc/api/_toc.markdown b/doc/api/_toc.markdown
index d8da1740e2e..276b3db8a8a 100644
--- a/doc/api/_toc.markdown
+++ b/doc/api/_toc.markdown
@@ -34,5 +34,3 @@
* [OS](os.html)
* [Debugger](debugger.html)
* [Cluster](cluster.html)
-* Appendixes
- * [Appendix 1: Recommended Third-party Modules](appendix_1.html)
diff --git a/doc/api/all.markdown b/doc/api/all.markdown
index 044c0aee974..4e0dd817418 100644
--- a/doc/api/all.markdown
+++ b/doc/api/all.markdown
@@ -34,4 +34,3 @@
@include os
@include debugger
@include cluster
-@include appendix_1
diff --git a/doc/api/appendix_1.markdown b/doc/api/appendix_1.markdown
deleted file mode 100644
index 9e114df467c..00000000000
--- a/doc/api/appendix_1.markdown
+++ /dev/null
@@ -1,46 +0,0 @@
-# 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).
-
-You can also find third party modules via [npm search](http://search.npmjs.org).
-
-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)
-
-- HTTP Middleware: [Connect](https://github.com/senchalabs/connect)
-
-- Web Framework: [Express](https://github.com/visionmedia/express)
-
-- Web Sockets: [Socket.IO](https://github.com/learnboost/socket.io)
-
-- HTML Parsing: [HTML5](https://github.com/aredridel/html5)
-
-- [mDNS/Zeroconf/Bonjour](https://github.com/agnat/node_mdns)
-
-- [RabbitMQ, AMQP](https://github.com/postwait/node-amqp)
-
-- [mysql](https://github.com/felixge/node-mysql)
-
-- Serialization: [msgpack](https://github.com/pgriess/node-msgpack)
-
-- Scraping: [Apricot](https://github.com/silentrob/Apricot)
-
-- Debugger: [ndb](https://github.com/smtlaissezfaire/ndb) is a CLI debugger
- [inspector](https://github.com/dannycoates/node-inspector) is a web based
- tool.
-
-- [pcap binding](https://github.com/mranney/node_pcap)
-
-- [ncurses](https://github.com/mscdex/node-ncurses)
-
-- Testing/TDD/BDD: [vows](http://vowsjs.org/),
- [mocha](https://github.com/visionmedia/mocha),
- [mjsunit.runner](https://github.com/tmpvar/mjsunit.runner)
-
-Patches to this list are welcome.