5

我使用的是 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 上,我猜“终端”的意思是“命令提示符”。所以,我已经npm install -g live-server从 C:// 提示符运行了“”。

我现在对“live-server从根 /code 文件夹在终端中运行”的部分感到困惑。

是什么root /code folder

4

1 回答 1

9

在命令提示符下,cmd.com 或 Windows 终端(是的,终端的名称中实际上包含“终端”一词cd到您的项目目录(文档称为“根”或“代码”文件夹) 然后输入:

live-server

它实际上是作为命令安装的,就像cddir

“根”文件夹或“代码”文件夹实际上就是您保存文件的index.html文件夹。

于 2020-04-16T12:24:46.607 回答