如何让 npm lite 服务器提供我网页的全部内容?
How to get npm lite server serve full content of my webpage?
我使用 npm install html5-boilerplate --save-dev
和 [=13 安装了 html5-boilerplate 和 lite-server 模块=]分别。
我不得不从 node_modules
文件夹中复制 index.html
以便使用 npm start
提供内容。我所看到的只是 <p>
标签被呈现,如图所示。
这是我的工作目录的样子。
Directory of D:\Full_Stack_Web_Development
27-02-2019 09:58 <DIR> .
27-02-2019 09:58 <DIR> ..
27-02-2019 10:05 1,871 index.html
27-02-2019 09:55 <DIR> node_modules
27-02-2019 09:55 125,319 package-lock.json
27-02-2019 09:57 739 package.json
3 File(s) 127,929 bytes
3 Dir(s) 213,613,010,944 bytes free
D:\Full_Stack_Web_Development>
这就是我的 package.json
文件的样子。 index.html
可以查看here
{
"name": "full_stack_web_development",
"version": "1.0.0",
"description": "beginning front end development using html5 boilerplate",
"main": "index.html",
"scripts": {
"start": "npm run lite",
"test": "echo \"Error: no test specified\" && exit 1",
"lite": "lite-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alokananda-y/Full_Stack_Web_Development.git"
},
"author": "alokananda y",
"license": "ISC",
"bugs": {
"url": "https://github.com/alokananda-y/Full_Stack_Web_Development/issues"
},
"homepage": "https://github.com/alokananda-y/Full_Stack_Web_Development#readme",
"devDependencies": {
"html5-boilerplate": "^7.0.1",
"lite-server": "^2.4.0"
}
}
H5BP 非常灵活,所以有几种方法可以做您想做的事。您可以:
- 将
node_modules/html5-boilerplate
的全部内容复制到文件夹的根目录,而不仅仅是 index.html。您想要的基本文件夹结构就是我们 dist 文件夹中的内容。
- 您可以更改 index.html 中的所有链接以指向
node_modules/html5-boilerplate
中的 h5bp 资源因此,您可以 <link rel="stylesheet" href="node_modules/html5-boilerplate/css/main.css">
[= 而不是 <link rel="stylesheet" href="css/main.css">
24=]
- 最简单的实际上是下载最新的 version,解压缩文件夹,然后 运行
npm install --save-dev lite-server
进入该文件夹。这样,唯一的依赖就是 lite-server,而 h5bp 将准备就绪。这就是我会做的。我们通过 npm 提供项目,但它并不是真正的 dependency,就像其他包一样,它是整个站点或应用程序的起点。
我使用 npm install html5-boilerplate --save-dev
和 [=13 安装了 html5-boilerplate 和 lite-server 模块=]分别。
我不得不从 node_modules
文件夹中复制 index.html
以便使用 npm start
提供内容。我所看到的只是 <p>
标签被呈现,如图所示。
这是我的工作目录的样子。
Directory of D:\Full_Stack_Web_Development
27-02-2019 09:58 <DIR> .
27-02-2019 09:58 <DIR> ..
27-02-2019 10:05 1,871 index.html
27-02-2019 09:55 <DIR> node_modules
27-02-2019 09:55 125,319 package-lock.json
27-02-2019 09:57 739 package.json
3 File(s) 127,929 bytes
3 Dir(s) 213,613,010,944 bytes free
D:\Full_Stack_Web_Development>
这就是我的 package.json
文件的样子。 index.html
可以查看here
{
"name": "full_stack_web_development",
"version": "1.0.0",
"description": "beginning front end development using html5 boilerplate",
"main": "index.html",
"scripts": {
"start": "npm run lite",
"test": "echo \"Error: no test specified\" && exit 1",
"lite": "lite-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alokananda-y/Full_Stack_Web_Development.git"
},
"author": "alokananda y",
"license": "ISC",
"bugs": {
"url": "https://github.com/alokananda-y/Full_Stack_Web_Development/issues"
},
"homepage": "https://github.com/alokananda-y/Full_Stack_Web_Development#readme",
"devDependencies": {
"html5-boilerplate": "^7.0.1",
"lite-server": "^2.4.0"
}
}
H5BP 非常灵活,所以有几种方法可以做您想做的事。您可以:
- 将
node_modules/html5-boilerplate
的全部内容复制到文件夹的根目录,而不仅仅是 index.html。您想要的基本文件夹结构就是我们 dist 文件夹中的内容。 - 您可以更改 index.html 中的所有链接以指向
node_modules/html5-boilerplate
中的 h5bp 资源因此,您可以<link rel="stylesheet" href="node_modules/html5-boilerplate/css/main.css">
[= 而不是<link rel="stylesheet" href="css/main.css">
24=] - 最简单的实际上是下载最新的 version,解压缩文件夹,然后 运行
npm install --save-dev lite-server
进入该文件夹。这样,唯一的依赖就是 lite-server,而 h5bp 将准备就绪。这就是我会做的。我们通过 npm 提供项目,但它并不是真正的 dependency,就像其他包一样,它是整个站点或应用程序的起点。