-
exports查看全部
-
exports.add = add;和 module.exports = add 不同点注意 exports.add传统的模块实例, module.exports特别的对象类型,支持存在的东西。查看全部
-
在node中每一个js文件都看作是一个模块。不需要有命名空间,不用担心变量污染。查看全部
-
Nodejs中的模块与文件是一一对应的关系。模块的分类:核心模块(http fs path) ;文件模块(var util=require('./util.js')) ;第三方模块(通过npm安装的 var express=require('express'))查看全部
-
nodejs 四个重要网站:1.查看全部
-
版本知识:偶数位为稳定版本,奇数位为非稳定版本查看全部
-
var student =require('./student') var teacher=require('./teacher')//将模块赋值给局部变量。被当前脚本导入的模块都会向当前脚本暴露一组指定的api查看全部
-
什么是回调?查看全部
-
Apache ab for Ubuntu Linux ? # Ubuntu 安装 apache ab 命令 ## install 1 $ sudo apt-get install apache2-utils -Y http://www.imooc.com/qadetail/181465 https://zhuanlan.zhihu.com/p/23993991查看全部
-
Node查看全部
-
http众多基础概念查看全部
-
核心模块 本地模块 通过npm安装的第三方模块查看全部
-
模块的流程 1.创建模块 teacher.js 2.导出模块 exports.add=function(){} 3.加载模块 var teacher=require('./teacher.js') 4.使用模块 teacher.add('Scott')查看全部
-
模块规范查看全部
-
var http=require('http') http.createServer(function(req,res){ res.writeHead(200,{'content-Type':'text/plain'}) res.end('Hello World\n') }).listen(1337,'127.0.0.1') console.log('Server running at http://127.0.0.1:1337')查看全部
举报
0/150
提交
取消