-
nodejs.org查看全部
-
require返回一个模块对象(即刚才的exports);exports是module.exports的一个辅助方法,最终赋值给modu.exports;module.exports是最终供调用者调用的对象;如果module.exports已经有同名方法,exports上的就会被忽略;一般开发建议用exports查看全部
-
一、nodejs.org看看nodejs的版本升级,新特性的加入,重要bug的修复等 二、www.npmjs.com模块社区,看他人源代码,省力 三、github.com大量的项目和源码 四、stackoverflow.com技术解答社区以及查询相关资源,环境配置,异常均可找到答案查看全部
-
模块的创建,使用查看全部
-
iiii查看全部
-
核心模块,本地模块(文件模块),npm的第三方模块。<br> 模块的引用:1,路径引用模块,2,文件名引用模块。 名称引用非核心模块时node.js会把文件名映射到对应的模块引用的路径。 包含核心函数的核心模块在node启动时预先加载,非核心以及第三方模块之后加载。查看全部
-
ctrl+c停止服务器,修改请求或是响应代码,要重启服务器,查看全部
-
var http=require('http'); var server=http.createServer(function(req,res){ res.writeHead(200,{'Content-Type':'text/plain'}); res.end('Hello Node.js ,This is a Node.js http server demo\n'); }); server.listen(1337,'127.0.0.1'); console.log('Server running at http://127.0.0.1:1337/');查看全部
-
nodejs与浏览器中js执行环境不同查看全部
-
使用localhost方法 var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, { 'Content-Type': 'text/plain' }); res.end("Hello node.js!\n"); }).listen(8124); console.log('running on 8124!'); 运行node hello.js后打开http://localhost:8124/ 也可以查看全部
-
ab -n1000 -c10 http://localhost:2015/ -n表示总的请求数量 -c表示同时并发数量查看全部
-
http进阶内容查看全部
-
不同于jquery,commonjs是一套规范查看全部
-
node.js就是一个js的执行环境查看全部
-
偶数为稳定版本,基数为非稳定版本查看全部
举报
0/150
提交
取消