我有项目,我已经安装了实时服务器,npm install --save-dev live-server
我想现在使用 package.json 文件中的脚本属性运行实时服务器。我知道我们可以在全局范围内运行它,但我想在项目文件夹中运行 live-server。
问问题
1151 次
1 回答
0
我不知道你为什么要这样做,但你可以在 package.json 上添加它
"scripts": {
"live": "live-server"
}
然后像这样使用 npm 运行:
npm run live
这是 package.json 的示例:
{
"name": "tailwindcss",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"tailwindcss": "^1.4.6"
},
"devDependencies": {},
"scripts": {
"build:css": "tailwind build src/style.css -o style.css",
"live": "live-server"
},
"keywords": [],
"author": "",
"license": "ISC"
}
于 2020-07-06T06:52:42.870 回答