理解KOA洋葱模型
在JavaScript中实现中间件
Search for a command to run...
在JavaScript中实现中间件

A practical framework for turning one unclear integration failure into a testable, production-safe delivery target.
我们在安装完成✅git之后是可以通过修改、增加配置文件来定制化git环境的,最典型的定制就如我们在初次使用时候的 user.name 和 user.email git config --global user.name "xxx" git config --global user.email "xxx@xxx.xxx" 可以看到我们使用 git config 命令来配置git,但其实这个命令也是在修改git后面的配置文件; 它首先会查找系统级的 /etc/gitconfig 文件,该文件含有系...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <...
SyntaxError(语法错误) 在解析代码时候发生的语法错误, 比如 function fn(){ let a = } fn(); 错误信息 Uncaught SyntaxError: Unexpected token '}' TypeError(类型错误) 变量或者参数不是预期的类型时发生的错误, 比如在字符串上调用数组的方法. let a = 1234; a.contact(5); // undefined上调用也会 console.log(window.aaa.s) ...
Conformance 规范第二章 A conforming implementation of ECMAScript must provide and support all the types, values, objects, properties, functions, and program syntax and semantics described in this specification; 符合 ECMAScript 规范的实现必须提供并支持本规范中描述的所有类型、值、对象...