开启node服务器
1-1 配置
新建一个终端,安装:
yarn init -y //npm init -y
yarn add koa //npm add koa -S
//配置package.json
"scripts": {
"start":"nodemon index.js"
}
截图:
验证:index.js
console.log("hello world")
1-2 开启服务
根目录创建index.js
//index.js
const Koa = require("koa");
const app = new Koa();
app.use(async ctx=>{
ctx.body = "hello world"
})
app.listen(8080)
验证:
注意:
npm i //yarn //代码齐全 安装很多xxx
npm start //yarn start //运行结果
npm add xxxx -S //yarn add xxxx //安装指定xxxx
cls //删除批次
ctrl+c y // 终止批处理操作吗(Y/N)? y
比较而言:yarn比较快速安装
常用的指令yarn install 简写为yarn ,相当于npm install(i),用来安装。
yarn add ,安装模块,相当于npm install 。
yarn init,初始化项目,相当于npm init。
yarn run,运行项目,相当于npm run。
yarn remove,卸载模块,相当于npm uninstall(un)。
yarn upgrade,更新模块,相当于npm update。
yarn cache clean,清除缓存,相当于npm cache clean。