NAME
npm - node package manager
SYNOPSIS
npm <command> [args]
VERSION
DESCRIPTION
npm is the package manager for the Node JavaScript platform. It puts
modules in place so that node can find them, and manages dependency
conflicts intelligently.
It is extremely configurable to support a wide variety of use cases.
Most commonly, it is used to publish, discover, install, and develop
node programs.
Run npm help to get a list of available commands.
INTRODUCTION
You probably got npm because you want to install stuff.
ajout du module express
Ajouter un module à nodejs est extrêmement simple. Ouvrez une console et tapez la ligne suivante :
npm install express
Express.js est un module qui vous évitera de réécrire le code pour un serveur http à chaque application. N'hésitez pas à aller voir sa documentation.
De la même façon vous pourrez installer beaucoup d'autres modules, à vous de les trouver.
express@2.5.9 ./node_modules/express
├── qs@0.4.2
├── mime@1.2.4
├── mkdirp@0.3.0
└── connect@1.8.7
quelques modules utiles
npm install socket.io
Pour le lancement.
node app.js
:/var/www/node/socket.io$ node app.js
info - socket.io started
warn - error raised: Error: listen EACCES
npm install express
source
http://dmathieu.com/fr/node/introduction-a-nodejs
présentation sur nodejs http://oct.2011.lyonjs.naholyr.fr/#slide-81
http://www.web-tambouille.fr/2011/03/8/node-js-partie-3-premiere-application-node-js-et-html5-express-socket-io.html
http://doc.ubuntu-fr.org/nodejs
socket.io
https://groups.google.com/forum/#!forum/socket_io
http://socket.io/
Aucun commentaire:
Enregistrer un commentaire