掌握 Node.js:100 个常用命令一览
Node.js是一个开源和跨平台的JavaScript运行时环境。下面是一些常见的Node.js命令:
- 创建一个新的Node.js项目:
npm init
- 安装一个依赖包:
npm install <package_name>
- 全局安装一个包:
npm install -g <package_name>
- 安装特定版本的包:
npm install <package_name>@<version>
- 更新一个依赖包:
npm update <package_name>
- 卸载一个依赖包:
npm uninstall <package_name>
- 列出已安装的包:
npm list
- 运行一个Node.js文件:
node <file_name.js>
- 启动一个Node.js的REPL环境:
node
- 检查Node.js的版本:
node -v
- 运行Node.js的交互式调试器:
node inspect <file_name.js>
- 在特定的端口运行一个应用:
node <file_name.js> --port=8080
- 在Node.js中使用HTTP模块创建一个简单的服务器:
const http = require('http');
http.createServer((req, res) => {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(8080, () => {
console.log('Server running at http://127.0.0.1:8080/');
});
- 使用Node.js的文件系统模块读取文件:
const fs = require('fs');
fs.readFile('example.txt', 'utf8', (err, data) => {
if (err) throw err;
console.log(data);
});
- 使用Node.js的路径模块解析路径:
const path = require('path');
console.log(path.join('/foo', 'bar', 'baz/asdf', 'quux', '..'));
- 使用Node.js的OS模块获取系统信息:
const os = require('os');
console.log('Total memory: ' + os.totalmem() + ' bytes.');
console.log('Free memory: ' + os.freemem() + ' bytes.');
- 使用Node.js的DNS模块解析域名:
const dns = require('dns');
dns.lookup('example.com', (err, address, family) => {
console.log('Address: %j Family: IPv%s', address, family.toString());
});
- 使用Node.js的HTTPS模块发送HTTPS请求:
const https = require('https');
https.get('https://encrypted.google.com/', (res) => {
console.log('statusCode:', res.statusCode);
console.log('headers:', res.headers);
res.on('data', (d) => {
process.stdout.write(d);
});
});
- 使用Node.js的Child Process模块执行系统命令:
const { exec }
评论已关闭