如何使用npm start打开localhost

How to use npm start to open localhost

刚刚用html,css,js做了一个网站,想用npm start打开。当然,我知道如果我单击 html,网页将会打开。但我想使用 npm。我需要安装什么到 npm,我需要更改启动以在本地打开站点吗?我对此知之甚少,不胜感激。

编辑:我已经安装了 node.js

要启动服务于 index.html 的本地 Web 服务器,请执行以下步骤:

  1. 在命令行中导航到 index.html 所在的文件夹。
  2. 运行 npm init,它会问一些问题你想在你的 package.json 中有什么配置。如果您还不确定,请使用默认值,稍后您可以更改它们。
  3. 运行 npm install http-server --save-devhttp-server 作为开发依赖项,它能够为 index.html 文件提供服务。
  4. package.json 中添加到 scripts start npm 脚本以启动 http-server"scripts": {"start": "http-server"}.
  5. 运行 npm start 从命令行,服务器将默认在 http://localhost:8080/
  6. 启动

当然值得将 htmlcssjs 文件放在一个单独的文件夹中,以便从该文件夹中为它们提供服务检查 [=19= 的参数].