Node.js 和 npm 安装后如何运行实时服务器
Posted
技术标签:
【中文标题】Node.js 和 npm 安装后如何运行实时服务器【英文标题】:How to run live server after Node.js and npm installation 【发布时间】:2020-07-29 16:27:20 【问题描述】:我使用的是 Windows 10,并且已在本地计算机上安装了 Node.js(带有 npm)。我正在尝试遵循以下说明:
"Once node.js and npm are installed, run the following command in your terminal.
npm install -g live-server
This will install live-server⁵, a simple static server that has live reload built-in. To
start your server, run live-server in your terminal from the root /code folder —
it will even open a new browser window for you!"
由于我在 Windows 上,我猜“终端”的意思是“命令提示符”。所以,我已经从 C:// 提示符运行了“npm install -g live-server
”。
我现在对“在您的终端中从根 /code 文件夹运行 live-server
”的部分感到困惑。
root /code folder
是什么?
【问题讨论】:
那么您要提供的文件在哪里? 【参考方案1】:在命令提示符下,cmd.com 或 Windows 终端(是的,new one 实际上在其名称中包含 the word "terminal"),cd
到您的项目目录(在文档中称为“根”或“代码”文件夹)然后输入:
live-server
就像cd
、dir
等一样,它实际上是作为命令安装的。
“根”文件夹或“代码”文件夹实际上就是您保存 index.html
文件的文件夹。
【讨论】:
以上是关于Node.js 和 npm 安装后如何运行实时服务器的主要内容,如果未能解决你的问题,请参考以下文章