Node.js
npx Node 自带 npm 模块,所以可以直接使用 npx 命令。万一不能用,就要手动安装一下。
$ npm install -g npx
使用NPX可以首选本地环境,如果全局没有这个包,使用npm会报错。
执行
npx http-server
会出现本地服务器
Available on:
http://169.254.83.131:8080
http://169.254.107.178:8080
http://192.168.0.107:8080
http://127.0.0.1:8080
Hit CTRL-C to stop the server
使用本地服务器访问不是本地服务的请求会报跨域的错。(安全沙箱) 但是在Node.js端访问,就不会有安全沙箱的限制。
node写文件操做在执行时,一定要进入文件夹内,否则会报错。报Error: Cannot find module 'D:\实验室\vs作品\learn\index.js'
D:\实验室\vs作品\learn>cd 02-fs
D:\实验室\vs作品\learn\02-fs>node index.js
文件创建成功
写入文件操作代码
const fs = require("fs")
fs.writeFile('./log.txt', 'hello', (err, data) => {
if (err) {;
} else {
console.log("文件创建成功");
}
})
第一个参数为要写的文件名及位置(相对位置) 第二个参数是要写的内容 第三个参数为回调函数
|