首页 > 系统相关 >Windows10 gitbook本地搭建(nodejs v10.23.0)

Windows10 gitbook本地搭建(nodejs v10.23.0)

时间:2022-12-08 17:36:32浏览次数:73  
标签:info ... loading OK nodejs plugin Windows10 gitbook

1.下载Nodejs并安装,默认路径即可。(用最新的版本没成功,按照一篇博客里提示的版本nodejs v10.23.0,成功创建gitbook)

https://nodejs.org/download/release/v10.23.0/node-v10.23.0-x64.msi

2.命令行查看一下版本

 如果npm版本不对就安装一下:npm -g install [email protected]

3.安装gitbook-cli:npm install -g gitbook-cli

C:\Users\zhang>npm install -g gitbook-cli
C:\Users\zhang\AppData\Roaming\npm\gitbook -> C:\Users\zhang\AppData\Roaming\npm\node_modules\gitbook-cli\bin\gitbook.js
+ [email protected]
added 105 packages from 71 contributors, removed 629 packages and updated 25 packages in 32.979s

4.创建一本gitbook

C:\Users\zhang>d:
D:\>mkdir gitbook
D:\>cd gitbook
D:\gitbook>mkdir firstbook
D:\gitbook>cd firstbook
D:\gitbook\firstbook>gitbook init
Installing GitBook 3.2.3
(node:15092) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:15092) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
[email protected] C:\Users\ZHANGJ~1\AppData\Local\Temp\tmp-15092fYD26BQCpSWV\node_modules\gitbook
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected])
info: create README.md
info: create SUMMARY.md
info: initialization is finished
gitbook init执行成功会产生两个文件,目录:SUMMARY.md,第一篇文章:README.md
# Summary  -- 这个是标题

* [Introduction](README.md) -- 这个是引用README.md,相当于建立一个超级链接,中括号里的是一个提示内容,可自定义。

5.启动server:

D:\gitbook\firstbook>gitbook serve
Live reload server started on port: 35729
Press CTRL+C to quit ...

info: 7 plugins are installed
info: loading plugin "livereload"... OK
info: loading plugin "highlight"... OK
info: loading plugin "search"... OK
info: loading plugin "lunr"... OK
info: loading plugin "sharing"... OK
info: loading plugin "fontsettings"... OK
info: loading plugin "theme-default"... OK
info: found 2 pages
info: found 0 asset files
info: >> generation finished with success in 0.7s !

Starting server ...
Serving book on http://localhost:4000

6.在浏览器里访问:

 7._book目录可以直接拷贝到nginx目录或者放到github里访问,相当于生成了一个静态站点。

参考:

1.https://blog.csdn.net/weixin_50920579/article/details/123179462

2.https://blog.csdn.net/weixin_50920579/article/details/123161481

3.https://baijiahao.baidu.com/s?id=1721076634433156540&wfr=spider&for=pc

4.https://apioak.com/zh_CN/basic-information/gitbook-local-building.html

标签:info,...,loading,OK,nodejs,plugin,Windows10,gitbook
From: https://www.cnblogs.com/v5captain/p/16966684.html

相关文章

  • ubuntu部署nodejs项目
    安装nodejsaptupdatecurl-sLhttps://deb.nodesource.com/setup_16.x|sudobash-sudoapt-yinstallnodejs aptinstall mysql-servermysql-uroot-pCR......
  • MAC之安装NodeJs级环境配置
    一,安装NodeJS地址: ​​http://nodejs.p2hp.com/​​最后,会给出安装的路径,如下:二,配置环境变量1,  npm-gbin  (查看npm全局包可执行文件路径)2,写入到.bash_profile文......
  • 理解Nodejs中的进程间通信
    前置知识文件描述符在Linux系统中,一切都看成文件,当进程打开现有文件时,会返回一个文件描述符。文件描述符是操作系统为了管理已经被进程打开的文件所创建的索引,用来指......
  • 用 nodejs 搭建脚手架
    1前言1.1像我们熟悉的vue-cli,taro-cli等脚手架,只需要输入简单的命令taroinitproject,即可快速帮我们生成一个初始项目。在日常开发中,有一个脚手架工具可以用来提高......
  • 理解NodeJS多进程
    序言一次面试中,我提到自己用过pm2,面试接着问:「那你知道pm2父子进程通信方式吗」。我大概听说pm2有cluster模式,但不清楚父子进程如何通信。面试结束后把NodeJS的多进程重新......
  • Ubuntu——在Windows10安装ubuntu18.04双系统的方法
    Ubuntu——在Windows10安装ubuntu18.04双系统的方法​​一、方法一​​​​1、参考博客​​​​2、小贴士​​​​二、方法二​​​​1、参考博客​​​​2、小贴士​​​​......
  • 解决Webstorm Nodejs console.log("这是中文") 控制台乱码
    设置文件编码自定义vm选项文件添加文件最后一行添加-Dfile.encoding=UTF-83.修改注册表Windows+R-->regedit-->计算机\HKEY_LOCAL_MACHINE\SOFTWARE\Microsof......
  • 03.Nodejs中的路由与接口
    路由与接口目录目录路由与接口express基本使用托管静态资源nodemonExpress中的路由路由的匹配路由的使用模块化路由Express中间件中间件的格式全局生效的中间件局部生效......
  • 04.Nodejs操作MySQL
    在Nodejs中操作MySQL数据库目录在Nodejs中操作MySQL数据库MySQL数据库SQL的基本使用SELECT语句INSERTINTO语句UPDATE语句DELETE语句WHERE子句AND与OR运算符ORDERBY子......
  • 05.Nodejs_web开发模式
    Web开发目录目录Web开发Web开发模式服务端渲染的传统Web开发模式前后端分离的Web开发模式Session认证机制在项目中使用Session向session中存入数据:从session中获取数......