node

 

 

Table of Contents

  • 1. 全局对象
  • 2. 代码执行优先级
  • 3. 模块导入
  • 4. 模块加载
    • 4.1. 文件模块优先级
    • 4.2. 文件夹加载优先级
      • 4.2.1. 包(文件夹)下的入口文件优先级
      • 4.2.2. 包加载优先级
  • 5. 核心模块的简单使用
    • 5.1. events

1 全局对象

  • global
console.log(global);// Object [global] {
//     global: [Circular],
//         clearInterval: [Function: clearInterval],
//     clearTimeout: [Function: clearTimeout],
//     setInterval: [Function: setInterval],
//     setTimeout: [Function: setTimeout] { [Symbol(util.promisify.custom)]: [Function] },
//     queueMicrotask: [Function: queueMicrotask],
//     clearImmediate: [Function: clearImmediate],
//     setImmediate: [Function: setImmediate] {
//         [Symbol(util.promisify.custom)]: [Function]
//     }
// }
  • console
console.log(console)// {
//     log: [Function: bound consoleCall],
//     warn: [Function: bound consoleCall],
//     dir: [Function: bound consoleCall],
//     time: [Function: bound consoleCall],
//     timeEnd: [Function: bound consoleCall],
//     timeLog: [Function: bound consoleCall],
//     trace: [Function: bound consoleCall],
//     assert: [Function: bound consoleCall],
//     clear: [Function: bound consoleCall],
//     count: [Function: bound consoleCall],
//     countReset: [Function: bound consoleCall],
//     group: [Function: bound consoleCall],
//     groupEnd: [Function: bound consoleCall],
//     table: [Function: bound consoleCall],
//     debug: [Function: bound consoleCall],
//     info: [Function: bound consoleCall],
//     dirxml: [Function: bound consoleCall],
//     error: [Function: bound consoleCall],
//     groupCollapsed: [Function: bound consoleCall],
//     Console: [Function: Console],
//     profile: [Function: profile],
//     profileEnd: [Function: profileEnd],
//     timeStamp: [Function: timeStamp],
//     context: [Function: context],
//     [Symbol(kBindStreamsEager)]: [Function: bound ],
//     [Symbol(kBindStreamsLazy)]: [Function: bound ],
//     [Symbol(kBindProperties)]: [Function: bound ],
//     [Symbol(kWriteToConsole)]: [Function: bound ],
//     [Symbol(kGetInspectOptions)]: [Function: bound ],
//     [Symbol(kFormatForStdout)]: [Function: bound ],
//     [Symbol(kFormatForStderr)]: [Function: bound ]
// }
  • exports, require, module, _filename, _dirname(模块参数)
console.log(arguments.callee + '');// function (exports, require, module, __filename, __dirname) {
//     console.log(arguments.callee + '');

2 代码执行优先级

同步代码优先,例子如下

// 代码执行优先级
setTimeout(function () {setTimeout(function () {console.log('time out');}, 0);new Promise(resolve => {setTimeout(function () {console.log('start in Promise');}, 1);console.log('beg');resolve();console.log('end');setTimeout(function () {console.log('end in Promise');}, 0);}).then(() => {console.log('finish');});console.log('不要调皮');
}, 100);// beg
// end
// 不要调皮
// finish
// time out
// start in Promise
// end in Promise

3 模块导入

同步导入,module.exports = exports ==> true

{ test }  » tree                      
.
├── index.js
└── test.js
./index.js
console.log("index.js");
./test.js
require('./index.js');
console.log('test.js');

output: 导入之后才会继续执行代码

index.js
test.js

4 模块加载

4.1 文件模块优先级

这里只考虑 .js .json文件路径加载

文件结构
.
├── a.js
├── a.json
├── b.json
└── test.js
a.js
module.exports = "js文件优先";
a.json
{"s": "json文件优先"
}
b.json
{"main" : "json 文件也支持省略扩展名的方式加载"
}
test.js
// 测试js文件先加载
console.log(require('./a'));
// 证明json也可以加载
console.log(require('./b'));
output
默认文件加载js先于json文件
js文件优先
{ main: 'json 文件也支持省略扩展名的方式加载' }

4.2 文件夹加载优先级

4.2.1 包(文件夹)下的入口文件优先级

  1. 文件结构
    .
    ├── a
    │   ├── index.js
    │   ├── m.js
    │   └── package.json
    ├── b
    │   ├── index.js
    │   └── package.json
    ├── c
    │   └── index.js
    └── test.js
    
  2. ./a
    index.js
    module.exports = "index.js文件优先";
    
    m.js
    module.exports = "package.json文件优先";
    
    package.json
    {"name": "a","version": "1.0.0","main" : "m.js"
    }
    
  3. ./b
    index.js
    module.exports = "./b/index.js文件优先";
    
    package.json
    {"name": "a","version": "1.0.0"
    }
    
  4. ./c
    index.js
    module.exports = "index.js支持默认加载";
    
  5. ./test.js
    // 优先加载packagae.json文件
    console.log(require('./a'));
    // packagae.json中main属性指定加载某文件
    console.log(require('./b'));
    // index.js也支持默认加载
    console.log(require('./c'));
    
  6. output

    package.json文件中有main优先于index.js文件

    package.json文件优先
    ./b/index.js文件优先
    index.js支持默认加载
    

4.2.2 包加载优先级

  1. 路径加载
    文件结构
    .
    ├── fs
    │   └── index.js
    └── test.js
    
    ./fs/index.js
    module.exports = "路径加载优先级高";
    
    ./fs/test.js
    // 加载核心模块
    console.log(require('fs'));
    // 第三方模块
    console.log(require('./fs'));
    
    output

    路径加载优先级高于核心模块

    {appendFile: [Function: appendFile],appendFileSync: [Function: appendFileSync],access: [Function: access],accessSync: [Function: accessSync],chown: [Function: chown],promises: [Getter]..........//还有很多
    }
    路径加载优先级高
    
  2. 非路径加载
    文件结构
    .
    ├── node_modules
    │   ├── fs
    │   │   └── index.js
    │   └── tts
    │       └── index.js
    └── test.js
    
    ./nodenodules./fs/index.js
    module.exports = "./node_nodules./fs";
    
    ./nodenodules./tts/index.js
    module.exports = "./node_nodules./tts";
    
    ./test.js
    // 判断第三方模块和核心模块的优先级
    console.log(require('fs'));
    // 第三方模块可以加载
    console.log(require('tts'));
    
    output
    核心模块加载优先于第三方模块(nodemodules)
    {appendFile: [Function: appendFile],appendFileSync: [Function: appendFileSync],access: [Function: access],......//很多promises: [Getter]
    }
    ./node_nodules./tts
    
  3. 第三方模块查找过程(非路径查找)
    文件结构
    .
    ├── a
    │   ├── b
    │   │   ├── c
    │   │   │   ├── node_modules
    │   │   │   │   └── tts1
    │   │   │   │       └── index.js
    │   │   │   └── t.js
    │   │   └── node_modules
    │   │       └── tts2
    │   │           └── index.js
    │   └── node_modules
    │       └── tts3
    │           └── index.js
    └── node_modules└── tts4└── index.js
    
    module.paths 中列表的顺序查找
    递归向上级目录查找
    ['C:\\a\\b\\c\\node_modules','C:\\a\\b\\node_modules','C:\\a\\node_modules','C:\\node_modules'
    ]
    

5 核心模块的简单使用

5.1 events

继承了事件类,自身不用实现事件类

const events = require('events');class Teacher extends events {constructor(sec = 2000) {super();this.sec = sec;this.doing();}doing() {let cnt = 0;setInterval(() => {++cnt;this.emit('class', {cnt});}, this.sec);}
}const t = new Teacher();
t.on('class', function (args) {console.log('time to class:', args.cnt);
});

Created: 2019-06-26 周三 09:31

Validate

转载于:https://www.cnblogs.com/heidekeyi/p/11075506.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/248666.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

一个关于WCF调用远程链接返回405错误不允许使用此方法的问题

最近在调试WCF的接口时一直返回“405不允许使用此方法”,这个问题困扰了大半天,网上查了各种办法,但是每个人遇到的问题不同还是不能解决。 最后无意之中发现问题所在,记录一下帮助后面的同学解决问题。 WCF远程方法会配置属性Web…

PHP从零开始--循环数组

一、循环 1.1单层for循环 1.1.1基础语法 for(初识变量;结束范围;累加/累减){ 重复执行的代码 } 1、 先初识化变量$i 2、 $i<100表达式进行判断 3、 跳入循环&#xff0c;执行重复代码 4、 累加或者累加 5、 再进行$i<100表达式判断 6、 再跳入循环&#xff0c;执行重复…

Spring Cloud(F版)搭建高可用服务注册中心

上一篇文章【Spring Cloud搭建注册中心】成功搭建了一个Eureka Server服务注册中心&#xff0c;不过相信细心的朋友都会发现&#xff0c;这个服务注册中心是一个单节点服务注册中心&#xff0c;万一发生故障或者服务器宕机&#xff0c;那所有的服务可就不能使用了&#xff0c;这…

Python(60)_闭包

1 、闭包的概念 #-*-coding:utf-8-*- 1、闭包&#xff1a;内部函数调用外部函数的变量def outer():a 1def inner():print(a)print(inner.__closure__) outer() print(outer.__closure__) 2 闭包的使用 #-*-coding:utf-8-*- 1、闭包&#xff1a;内部函数调用外部函数的变量 …

PHP从零开始--错误处理函数

一、错误处理 1.1错误种类 1.1.1Notices 比如没有定义变量确使用了会报notice错误&#xff0c;只是提醒注意&#xff0c;不影响后续代码执行 1.1.2Warnings 这是警告错误&#xff0c;比如include引入一个并不存在的文件&#xff0c;不影响后续代码执行 1.1.3Fatal Erro…

第四单元博客总结——暨OO课程总结

第四单元博客总结——暨OO课程总结 第四单元架构设计 第一次UML作业 简单陈述 第一次作业较为简单&#xff0c;只需要实现查询功能&#xff0c;并在查询的同时考虑到性能问题&#xff0c;即我简单的将每一次查询的结果以及递归的上层结果都存储下来&#xff0c;使用一个Boolean…

两列布局:6种方法

面试过程中总会文档两列布局&#xff0c;左边等宽&#xff0c;右边自适应几种方法&#xff1f;以下提供6种为君解忧 <div id"wrap"><div id"left"></div><div id"right"></div> </div>需求就是左侧定宽&…

PHP从零开始--数据库

文章目录一、 数据库简介1.1概念1.2命令行操作1.3连接数据库1.4配置环境变量二、 数据库的相关操作2.1显示所有仓库2.2创建仓库2.3删除仓库2.4切换仓库三、 数据表的相关操作3.1概念3.2显示所有的数据表3.3创建数据表3.2修改字段名3.3查看表结构3.4添加字段3.5删除字段3.6更改数…

常用SQL语句

将记录的某一字段值设置为空&#xff08;null&#xff09;UPDATE 表名 SET 字段名NULL WHERE 条件字段名123; 更新整列为某个值UPDATE 表名 SET 字段名NULL 转载于:https://www.cnblogs.com/zhcBlog/p/10254066.html

如何下载js类库

https://bower.io/ 这个已经淘汰 https://learn.jquery.com/jquery-ui/environments/bower/ Web sites are made of lots of things — frameworks, libraries, assets, and utilities. Bower manages all these things for you. Keeping track of all these packages and mak…

Python 常用系统模块整理

Python中的常用的系统模块中部分函数等的整理 random: 随机数sys: 系统相关os: 系统相关的subprocess: 执行新的进程multiprocessing: 进程相关threading: 线程相关pickle: 将对象转换成二进制文件time: 时间datetime: 基本的日期和时间类型timeit: 准确测量小段代码的执行时间…

PHP从零开始--字段修饰符数据操作SQL语言

文章目录一、 字段修饰符1.1主键1.2自动增长1.3非空1.4默认值1.5外键二、 对数据的操作2.1增加数据2.2删除数据2.3更新数据2.4查询数据2.4.1查询所有的数据2.4.2查询指定字段2.4.3去除重复字段2.4.4where表达式详解2.4.5分组查询2.4.6排序三、 SQL语言3.1DML3.2DDL3.3DCL一、 字…

scrapy爬虫框架windows下的安装问题

windows操作系统python版本是3.6.0通过Anaconda命令conda install scrapy安装scrapy,安装过程中没有问题。然后在命令行输入命令准备新建项目时&#xff0c;输入 scrapy startproject firstscrapy时出现了from cryptography.hazmat.bindings._openssl import ffi, libImportErr…

charles使用说明(基于mac)

1. Charles简介 1.1 Charles 需要java的运行环境支持&#xff0c;支持Windows、Mac&#xff1b;Fiddler不支持Mac。故Charles是在Mac下常用的网络封包截取工具。 1.2 Charles原理&#xff1a;通过将自己设置成系统的网络访问代理服务器&#xff0c;使得所有的网络访问请求都通过…

看完就懂的连表查询

文章目录一、表与表之间的关系1.1一对一1.2一对多1.3多对多二、 连表查询2.1概念2.2笛卡尔积2.3内连接2.4外连接2.4.1左外连接2.4.2右外连接2.4.3全连接2.4.4navicat导入导成sql语句2.4.5练习三、 子查询3.1概念3.2练习3.2.1查询工资最高的员工所有信息3.2.2查询工资比7654工资…

jpa

Transactionalpublic void testPerson() {try {Person person1 personDao.findById(1);person1.setAddress("天津");} catch (Exception e) {e.printStackTrace();}} service就这样一个方法&#xff0c;数据库中数据也会进行更新 将查询出来的数据对象赋值,然后不执…

影视感悟专题---1、B站-魔兽世界代理及其它乱七八糟

影视感悟专题---1、B站-魔兽世界代理及其它乱七八糟 一、总结 一句话总结&#xff1a; 看过的东西都可以学下&#xff0c;这样既可以学习那些东西&#xff0c;都是对自己生活学习有帮助的&#xff0c;还可以弥补自己每天学的东西的不够 1、《美丽心灵》中的博弈论共赢理论指的啥…

三分钟掌握PHP操作数据库

这里写自定义目录标题一、 操作数据库&#xff08;mysql&#xff09;的工具1.1命令行工具1.2navicat界面化工具1.3phpAdmin界面化工具二、 表单传值2.1文本框和文本域传值2.2单选框传值2.4下拉菜单传值三、 php连接数据库3.1连接方式介绍3.2mysqli基础步骤3.2.1创建连接3.2.2选…

go语言之进阶篇主协程先退出导致子协程没来得及调用

1、主协程先退出导致子协程没来得及调用 示例&#xff1a; package mainimport ("fmt""time" )//主协程退出了&#xff0c;其它子协程也要跟着退出 func main() {go func() {i : 0for {ifmt.Println("子协程 i ", i)time.Sleep(time.Second)}}(…

Actor模型(分布式编程)

Actor的目的是为了解决分布式编程中的一系列问题。所有消息都是异步交付的&#xff0c;因此将消息发送方与接收方分开&#xff0c;正是由于这种分离&#xff0c;导致actor系统具有内在的并发性&#xff1a;可以不受限制地并行执行任何拥有输入消息的 actor。用Actor写的程序可以…