将github图书下载下来离线查看的步骤
1 先从github上下载图书,推荐使用git clone的方法。
git clone https://github.com/ruanyf/es6tutorial.git
2 然后搭建本地http-server,用到npm服务下载http-server。
npm install http-server -g
要求要先安装nodejs才能用npm服务,官方下载地址:https://nodejs.org/en/
.3 进入目录,启动http-server服务
cd es6tutorial hs --o
我这用的mac只能用http-server --o,hs --o不起作用,不知是啥原因。
运行结果如下就显示搭建成功了。
Starting up http-server, serving ./ Available on: http://192.168.1.104:8080 http://127.0.0.1:8080 Hit CTRL-C to stop the server open: http://127.0.0.1:8080
http-server是nodejs的一个轻量化的http服务器,可搭建本地服务器达到gitbook serve的效果。