Node.js入门

Posted 尘恍若梦

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Node.js入门相关的知识,希望对你有一定的参考价值。

一)Hello World

var http = require(‘http‘);

http.createServer(function(req,res) {
    res.writeHead(200,{‘Content-Type‘:‘text/plain‘});
    res.end(‘Hello World
‘);
}).listen(3000,"127.0.0.1");

console.log(‘Server running at http://127.0.0.1:3000/‘);

 

二) Module

npm install 【module_name】  //需要全局安装时加上-g标记

npm search 【module_name】 //搜索模块

npm docs 【module_name】 //查看模块文档

npm bugs  【module_name】 //查看bug

npm eidt【module_name】

可用于搜索模块:

http://blago.dachev.com/modules

 

以上是关于Node.js入门的主要内容,如果未能解决你的问题,请参考以下文章

Node.js-入门

Node.js 原生开发入门完全教程(上)

(译+注解)node.js的C++扩展入门

Node.js开发入门—HelloWorld再分析

node.js调试入门

前端知识总结——Node.js入门