使用live-server服务器浏览前段文件

可以使用前端node.js 提供的服务器live-server作为前端开发服务器使用。

安装node.js的版本控制工具nvm,在终端中执行

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash

重新在进入终端,使用nvm安装最新版本的node.js

nvm install node

安装live-server

npm install -g live-server

live-server运行在8080端口下,可以通过127.0.0.1:8080来访问静态页面

你可能感兴趣的:(django,软件安装)