如何使用 package.json 文件的脚本 属性 在项目中 运行 live-server
how to run live-server inside project using scripts property of package.json file
我有项目并且我已经使用 npm install --save-dev live-server
安装了 live-server
我现在想 运行 使用 package.json 文件中的脚本 属性 的实时服务器。
我知道我们可以 运行 全局但我想 运行 项目文件夹中的实时服务器。
我不知道你为什么要这样做,但你可以在 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"
}
我有项目并且我已经使用 npm install --save-dev live-server
安装了 live-server
我现在想 运行 使用 package.json 文件中的脚本 属性 的实时服务器。
我知道我们可以 运行 全局但我想 运行 项目文件夹中的实时服务器。
我不知道你为什么要这样做,但你可以在 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"
}