-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
114 lines (84 loc) · 3.3 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
//************ javascript 错误 ***************
// `<EvalError>` eval 执行 出错, 该错误类型已经不再在ES5中出现了,只是为了保证与以前代码兼容,才继续保留
// eval('xxx'); //ReferenceError: xxx is not defined
// `<SyntaxError>` js 语法错误
// const i-1; // SyntaxError: Missing initializer in const declaration
// `<RangeError>` 数组越界错误
// const array = new Array(-1); // RangeError: Invalid array length
// `<ReferenceError>` 引用错误
// const a = b; // ReferenceError: b is not defined
// `<TypeError>` 对象类型错误
// const c = (null).c; // TypeError: Cannot read property 'c' of null
// `<URIError>` url 错误
// decodeURI('%'); // URIError: URI malformed
//****************** 操作系统错误 **************************
// 由底层操作系触发的系统错误,例如试图打开不存在的文件
// const fs = require('fs');
// fs.openSync('x.js'); // Error: ENOENT: no such file or directory, open 'x.js'
// 权限不足
// const os = require('os');
// os.setPriority(-1); //SystemError [ERR_SYSTEM_ERROR]: A system error occurred: uv_os_setpriority returned EACCES (permission denied)
// 端口占用
// const http = require('http');
// http.createServer().listen(3000);
// http.createServer().listen(3000); // Error: listen EADDRINUSE: address already in use :::3000
// ******************* 用户自定义错误 ****************
// throw new Error('CustomError'); // Error: CustomError
// ******************* 断言错误 ****************
// const assert = require('assert');
// assert.strictEqual(1, 2, 'assert error'); // AssertionError [ERR_ASSERTION]: assert error
// 错误捕获
// error first
// const fs = require('fs');
// fs.readFile('xxx.js', (err, data) => {
// if (err) {
// console.log(err); // { [Error: ENOENT: no such file or directory, open 'xxx.js'] errno: -2, code: 'ENOENT', syscall: 'open', path: 'xxx.js' }
// return;
// }
// console.log(data);
// });
// try catch
// try {
// a ++;
// } catch (e) {
// console.log(e); //ReferenceError: a is not defined
// }
// // EventEmitter on error
// const EventEmitter = require('events');
//
// const emitter = new EventEmitter();
// emitter.on("error", error => {
// console.log(error); // Error: Some Error
// });
// emitter.emit("error", new Error('Some Error'));
// // uncaughtException, 非常规手段
// process.on("uncaughtException", (error) => {
// console.log(error) // ReferenceError: i is not defined
// });
// i++;
// promise unhandledRejection(未监听 uncaughtException时有效)
// process.on("unhandledRejection", (reason, p) => {
// console.log(`${reason} ${p}`); // unhandledRejection [object Promise]
// });
// Promise.reject('unhandledRejection');
// 异步导致堆栈丢失
const throwError = () => {
throw new Error();
};
const doSth = () => {
setImmediate(() => throwError());
};
const main = () => {
doSth();
};
main();
/**
throw new Error();
^
Error
at throwError (/Users/wangjun/Desktop/practice/opensource/node-every-day/Error:Debugger/Error/index.js:91:11)
at Immediate.setImmediate (/Users/wangjun/Desktop/practice/opensource/node-every-day/Error:Debugger/Error/index.js:95:24)
at runCallback (timers.js:705:18)
at tryOnImmediate (timers.js:676:5)
at processImmediate (timers.js:658:5)
* */