├── README.md ├── chapter1 ├── README.md ├── index.html ├── section1.html ├── section1.md ├── section2.html ├── section2.md ├── section3.html ├── section3.md ├── section4.html └── section4.md ├── chapter2 ├── README.md ├── index.html ├── section1.html ├── section1.md ├── section2.html ├── section2.md ├── section3.html └── section3.md ├── chapter3 ├── README.md ├── index.html ├── section1.html ├── section1.md ├── section2.html └── section2.md ├── chapter4 ├── README.md ├── index.html ├── section1.html ├── section1.md ├── section2.html ├── section2.md ├── section3.html ├── section3.md ├── section4.html ├── section4.md ├── section5.html ├── section5.md ├── section6.html └── section6.md ├── chapter5 ├── README.md ├── index.html ├── section1.html ├── section1.md ├── section2.html ├── section2.md ├── section3.html ├── section3.md ├── section4.html ├── section4.md ├── section5.html └── section5.md ├── chapter6 ├── README.md ├── index.html ├── section1.html ├── section1.md ├── section2.html ├── section2.md ├── section3.html ├── section3.md ├── section4.html └── section4.md ├── chapter7 ├── README.md ├── index.html ├── section1.html ├── section1.md ├── section2.html ├── section2.md ├── section3.html ├── section3.md ├── section4.html ├── section4.md ├── section5.html └── section5.md ├── chapter8 ├── README.md ├── index.html ├── section1.html ├── section1.md ├── section2.html ├── section2.md ├── section3.html └── section3.md ├── gitbook ├── fonts │ └── fontawesome │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── gitbook-plugin-fontsettings │ ├── fontsettings.js │ └── website.css ├── gitbook-plugin-highlight │ ├── ebook.css │ └── website.css ├── gitbook-plugin-lunr │ ├── lunr.min.js │ └── search-lunr.js ├── gitbook-plugin-search │ ├── lunr.min.js │ ├── search-engine.js │ ├── search.css │ └── search.js ├── gitbook-plugin-sharing │ └── buttons.js ├── gitbook.js ├── images │ ├── apple-touch-icon-precomposed-152.png │ └── favicon.ico ├── style.css └── theme.js ├── images ├── logo.png └── nodejs_validater.gif ├── index.html └── search_index.json /README.md: -------------------------------------------------------------------------------- 1 | # 大家都能看懂的 nodejs入门基础教程 2 | 3 | 4 | 5 | [参考文档](https://lihongmi.github.io/node_study_doc/) 6 | -------------------------------------------------------------------------------- /chapter1/README.md: -------------------------------------------------------------------------------- 1 | # 第1章 nodejs简单的认识 2 | 3 | -------------------------------------------------------------------------------- /chapter1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter1/index.html -------------------------------------------------------------------------------- /chapter1/section1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter1/section1.html -------------------------------------------------------------------------------- /chapter1/section1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter1/section1.md -------------------------------------------------------------------------------- /chapter1/section2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter1/section2.html -------------------------------------------------------------------------------- /chapter1/section2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter1/section2.md -------------------------------------------------------------------------------- /chapter1/section3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter1/section3.html -------------------------------------------------------------------------------- /chapter1/section3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter1/section3.md -------------------------------------------------------------------------------- /chapter1/section4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter1/section4.html -------------------------------------------------------------------------------- /chapter1/section4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter1/section4.md -------------------------------------------------------------------------------- /chapter2/README.md: -------------------------------------------------------------------------------- 1 | # 第2章 npm包管理工具 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /chapter2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter2/index.html -------------------------------------------------------------------------------- /chapter2/section1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter2/section1.html -------------------------------------------------------------------------------- /chapter2/section1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter2/section1.md -------------------------------------------------------------------------------- /chapter2/section2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter2/section2.html -------------------------------------------------------------------------------- /chapter2/section2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter2/section2.md -------------------------------------------------------------------------------- /chapter2/section3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter2/section3.html -------------------------------------------------------------------------------- /chapter2/section3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter2/section3.md -------------------------------------------------------------------------------- /chapter3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter3/README.md -------------------------------------------------------------------------------- /chapter3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter3/index.html -------------------------------------------------------------------------------- /chapter3/section1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter3/section1.html -------------------------------------------------------------------------------- /chapter3/section1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter3/section1.md -------------------------------------------------------------------------------- /chapter3/section2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter3/section2.html -------------------------------------------------------------------------------- /chapter3/section2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter3/section2.md -------------------------------------------------------------------------------- /chapter4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter4/README.md -------------------------------------------------------------------------------- /chapter4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter4/index.html -------------------------------------------------------------------------------- /chapter4/section1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter4/section1.html -------------------------------------------------------------------------------- /chapter4/section1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter4/section1.md -------------------------------------------------------------------------------- /chapter4/section2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter4/section2.html -------------------------------------------------------------------------------- /chapter4/section2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter4/section2.md -------------------------------------------------------------------------------- /chapter4/section3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter4/section3.html -------------------------------------------------------------------------------- /chapter4/section3.md: -------------------------------------------------------------------------------- 1 | # 第3节 网址和查询字符串 模块 2 | 3 | url 4 | 5 | querystring 6 | 7 | -------------------------------------------------------------------------------- /chapter4/section4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter4/section4.html -------------------------------------------------------------------------------- /chapter4/section4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter4/section4.md -------------------------------------------------------------------------------- /chapter4/section5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter4/section5.html -------------------------------------------------------------------------------- /chapter4/section5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter4/section5.md -------------------------------------------------------------------------------- /chapter4/section6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter4/section6.html -------------------------------------------------------------------------------- /chapter4/section6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter4/section6.md -------------------------------------------------------------------------------- /chapter5/README.md: -------------------------------------------------------------------------------- 1 | # 第5章 nodejs应用开发 2 | 3 | -------------------------------------------------------------------------------- /chapter5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter5/index.html -------------------------------------------------------------------------------- /chapter5/section1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter5/section1.html -------------------------------------------------------------------------------- /chapter5/section1.md: -------------------------------------------------------------------------------- 1 | # 第1节 桌面 2 | * node-webkit 3 | * Electron 4 | 5 | -------------------------------------------------------------------------------- /chapter5/section2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter5/section2.html -------------------------------------------------------------------------------- /chapter5/section2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter5/section2.md -------------------------------------------------------------------------------- /chapter5/section3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter5/section3.html -------------------------------------------------------------------------------- /chapter5/section3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter5/section3.md -------------------------------------------------------------------------------- /chapter5/section4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter5/section4.html -------------------------------------------------------------------------------- /chapter5/section4.md: -------------------------------------------------------------------------------- 1 | # 第4节 外挂(自动注册,灌水) 测试 2 | nightmare 3 | -------------------------------------------------------------------------------- /chapter5/section5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter5/section5.html -------------------------------------------------------------------------------- /chapter5/section5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter5/section5.md -------------------------------------------------------------------------------- /chapter6/README.md: -------------------------------------------------------------------------------- 1 | # 第6章 mongodb 2 | 3 | -------------------------------------------------------------------------------- /chapter6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter6/index.html -------------------------------------------------------------------------------- /chapter6/section1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter6/section1.html -------------------------------------------------------------------------------- /chapter6/section1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter6/section1.md -------------------------------------------------------------------------------- /chapter6/section2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter6/section2.html -------------------------------------------------------------------------------- /chapter6/section2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter6/section2.md -------------------------------------------------------------------------------- /chapter6/section3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter6/section3.html -------------------------------------------------------------------------------- /chapter6/section3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter6/section3.md -------------------------------------------------------------------------------- /chapter6/section4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter6/section4.html -------------------------------------------------------------------------------- /chapter6/section4.md: -------------------------------------------------------------------------------- 1 | # 第4节 nodejs操作mongodb 2 | 3 | -------------------------------------------------------------------------------- /chapter7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter7/README.md -------------------------------------------------------------------------------- /chapter7/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter7/index.html -------------------------------------------------------------------------------- /chapter7/section1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter7/section1.html -------------------------------------------------------------------------------- /chapter7/section1.md: -------------------------------------------------------------------------------- 1 | # 第1节 注册 2 | 3 | -------------------------------------------------------------------------------- /chapter7/section2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter7/section2.html -------------------------------------------------------------------------------- /chapter7/section2.md: -------------------------------------------------------------------------------- 1 | # 第2节 登陆 2 | 3 | -------------------------------------------------------------------------------- /chapter7/section3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter7/section3.html -------------------------------------------------------------------------------- /chapter7/section3.md: -------------------------------------------------------------------------------- 1 | # 第3节 发布文章 2 | 3 | -------------------------------------------------------------------------------- /chapter7/section4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter7/section4.html -------------------------------------------------------------------------------- /chapter7/section4.md: -------------------------------------------------------------------------------- 1 | # 第4节 文章列表 2 | 3 | -------------------------------------------------------------------------------- /chapter7/section5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter7/section5.html -------------------------------------------------------------------------------- /chapter7/section5.md: -------------------------------------------------------------------------------- 1 | # 第5节 查看文章 2 | 3 | -------------------------------------------------------------------------------- /chapter8/README.md: -------------------------------------------------------------------------------- 1 | # 第6章 附录 2 | 3 | 4 | -------------------------------------------------------------------------------- /chapter8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter8/index.html -------------------------------------------------------------------------------- /chapter8/section1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter8/section1.html -------------------------------------------------------------------------------- /chapter8/section1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter8/section1.md -------------------------------------------------------------------------------- /chapter8/section2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter8/section2.html -------------------------------------------------------------------------------- /chapter8/section2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter8/section2.md -------------------------------------------------------------------------------- /chapter8/section3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter8/section3.html -------------------------------------------------------------------------------- /chapter8/section3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/chapter8/section3.md -------------------------------------------------------------------------------- /gitbook/fonts/fontawesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/gitbook/fonts/fontawesome/FontAwesome.otf -------------------------------------------------------------------------------- /gitbook/fonts/fontawesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/gitbook/fonts/fontawesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /gitbook/fonts/fontawesome/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/gitbook/fonts/fontawesome/fontawesome-webfont.svg -------------------------------------------------------------------------------- /gitbook/fonts/fontawesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/gitbook/fonts/fontawesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /gitbook/fonts/fontawesome/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/gitbook/fonts/fontawesome/fontawesome-webfont.woff -------------------------------------------------------------------------------- /gitbook/fonts/fontawesome/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/gitbook/fonts/fontawesome/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /gitbook/gitbook-plugin-fontsettings/fontsettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/gitbook/gitbook-plugin-fontsettings/fontsettings.js -------------------------------------------------------------------------------- /gitbook/gitbook-plugin-fontsettings/website.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/gitbook/gitbook-plugin-fontsettings/website.css -------------------------------------------------------------------------------- /gitbook/gitbook-plugin-highlight/ebook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/gitbook/gitbook-plugin-highlight/ebook.css -------------------------------------------------------------------------------- /gitbook/gitbook-plugin-highlight/website.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/gitbook/gitbook-plugin-highlight/website.css -------------------------------------------------------------------------------- /gitbook/gitbook-plugin-lunr/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/gitbook/gitbook-plugin-lunr/lunr.min.js -------------------------------------------------------------------------------- /gitbook/gitbook-plugin-lunr/search-lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/gitbook/gitbook-plugin-lunr/search-lunr.js -------------------------------------------------------------------------------- /gitbook/gitbook-plugin-search/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/gitbook/gitbook-plugin-search/lunr.min.js -------------------------------------------------------------------------------- /gitbook/gitbook-plugin-search/search-engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/gitbook/gitbook-plugin-search/search-engine.js -------------------------------------------------------------------------------- /gitbook/gitbook-plugin-search/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/gitbook/gitbook-plugin-search/search.css -------------------------------------------------------------------------------- /gitbook/gitbook-plugin-search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/gitbook/gitbook-plugin-search/search.js -------------------------------------------------------------------------------- /gitbook/gitbook-plugin-sharing/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/gitbook/gitbook-plugin-sharing/buttons.js -------------------------------------------------------------------------------- /gitbook/gitbook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/gitbook/gitbook.js -------------------------------------------------------------------------------- /gitbook/images/apple-touch-icon-precomposed-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/gitbook/images/apple-touch-icon-precomposed-152.png -------------------------------------------------------------------------------- /gitbook/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/gitbook/images/favicon.ico -------------------------------------------------------------------------------- /gitbook/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/gitbook/style.css -------------------------------------------------------------------------------- /gitbook/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/gitbook/theme.js -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/nodejs_validater.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/images/nodejs_validater.gif -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/index.html -------------------------------------------------------------------------------- /search_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongmi/node_study_doc/HEAD/search_index.json --------------------------------------------------------------------------------