Node.js 是一个基于 Chrome V8 引擎的 JavaScript 运行时环境。是一个事件驱动 I/O 服务端 JavaScript 环境,基于 Google 的 V8 引擎,V8 引擎执行 Javascript 的速度非常快,性能非常好。
支持 windows、linux、macOS、Docker 镜像。
Node.js 与浏览器的区别
1.在浏览器中,大多数时候做的是与 DOM 或其他 Web 平台 API(例如 Cookies)进行交互。 当然,那些在 Node.js 中是不存在的。 没有浏览器提供的 document
、 window
、以及所有其他的对象。
2.在浏览器中,不存在 Node.js 通过其模块提供的 API,例如文件系统访问功能。
3.在 Node.js 中, 可以控制运行环境 。 除非构建的是任何人都可以在任何地方部署的开源应用程序,否则你能知道会在哪个版本的 Node.js 上运行该应用程序。 与浏览器环境(你无法选择访客会使用的浏览器)相比起来,这非常方便。
4.Node.js 使用 CommonJS 模块系统,而在浏览器中,则还正在实现 ES 模块标准。
在实践中,这意味着在 Node.js 中使用 require()
,而在浏览器中则使用 import
。
当然,如果你不想看上面那些内容,我们可以看下面的表格
Node 可以做什么?
web 服务器
启动一个 web 服务器
// 依赖 http 模块创建 web 服务器
const http = require('http')
// 设置监听的端口
const hostname = '127.0.0.1'
const port = 3000
// 创建一个 web 服务
const server = http.createServer((req, res) => {
res.statusCode = 200
// 注意一下编码问题哟
res.setHeader('Content-Type', 'text/plain; charset=UTF-8')
res.end('你好,欢迎访问 https://www.lilnong.top')
})
// 使用上面设置好的端口监听
server.listen(port, hostname, () => {
console.log(`服务器运行在 http://${hostname}:${port}/`)
})
脚本程序
获取当前目录下面的所有 json 文件,进行处理 node app.js
// app.js 文件
const fs = require("fs");
const path = require('path');
const readDir = (entry, paths = []) => {
const dirInfo = fs.readdirSync(entry);
dirInfo.forEach(item=>{
const location = path.join(entry,item);
const info = fs.statSync(location);
if(info.isDirectory()){
console.log(`dir:${location}`);
readDir(location, [item]);
}else{
if(/.json$/.test(location)){
// readFile(location, paths)
}
}
})
}
// console.log('__dirname', __dirname)
readDir(__dirname);
交互式使用
上面的代码我们可以直接在 cmd 中使用