如何使用 npm start 加载特定页面

How to load a specific page with npm start

当我 运行 npm-start 加载时,它只加载 http://127.0.0.1:8000.

我想加载类似 http://127.0.0.1:8000/launch 的东西,而不是当我 运行 npm start

下面是我的package.json:

{
  "name": "myapp",
  "version": "0.1.3",
  "scripts": {
    "serve": "http-server -p 8000 -c-1 .",
    "start": "npm run serve",
  }
  ...
}

当前正在加载http://127.0.0.1:8000

这是我希望看到的; http://127.0.0.1:8000/launch

Solution: npm 同时安装 -g
然后在 package.jason 文件中更新服务

"serve": "concurrently \"http-server -p 8000 -c-1.\" \"start http://127.0.0.1:8000/launch\""