码迷,mamicode.com
首页 > Web开发 > 详细

Node.js入门

时间:2019-01-28 11:00:22      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:modules   type   fun   arch   \n   creates   ocs   cti   ext   

一)Hello World

var http = require(‘http‘);

http.createServer(function(req,res) {
    res.writeHead(200,{‘Content-Type‘:‘text/plain‘});
    res.end(‘Hello World\n‘);
}).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入门

标签:modules   type   fun   arch   \n   creates   ocs   cti   ext   

原文地址:https://www.cnblogs.com/developer-qin/p/10328330.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!