{"id":36383915,"url":"https://github.com/netpi/node-lessons","last_synced_at":"2026-01-11T15:00:09.707Z","repository":{"id":21839386,"uuid":"25162478","full_name":"netpi/node-lessons","owner":"netpi","description":"《Node.js 包教不包会》","archived":false,"fork":true,"pushed_at":"2014-10-12T10:10:11.000Z","size":1167,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-30T06:02:19.723Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"alsotang/node-lessons","license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/netpi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-10-13T14:39:22.000Z","updated_at":"2015-12-28T04:00:27.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/netpi/node-lessons","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/netpi/node-lessons","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netpi%2Fnode-lessons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netpi%2Fnode-lessons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netpi%2Fnode-lessons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netpi%2Fnode-lessons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/netpi","download_url":"https://codeload.github.com/netpi/node-lessons/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netpi%2Fnode-lessons/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28309475,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-11T14:58:17.114Z","status":"ssl_error","status_checked_at":"2026-01-11T14:55:53.580Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-11T15:00:08.915Z","updated_at":"2026-01-11T15:00:09.702Z","avatar_url":"https://github.com/netpi.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# 《Node.js 包教不包会》 -- by alsotang\n\n\n## 为何写作此课程\n\n\n在 CNode(https://cnodejs.org/) 混了那么久，解答了不少 Node.js 初学者们的问题。回头想想，那些问题所需要的思路都不难，但大部分人由于练手机会少，所以在遇到问题的时候很无措。国内唯一一本排的上号的 Node.js 书是 @朴灵(https://github.com/JacksonTian) 的 《深入浅出Node.js》(http://book.douban.com/subject/25768396/ )，但这本书离实战还是比较远的。\n\n这个课程是希望提供更多的 Node.js 实战机会，通过每一节精心安排的课程目标，让 Node.js 的初学者们可以循序渐进地，有目的有挑战地开展 Node.js 的学习。\n\n本课程的更新信息可见我的微博：http://weibo.com/tangzhanli\n\n更多 Node.js 入门资料请前往：https://cnodejs.org/getstart\n\n## 课程列表\n\n* Lesson 0: [《搭建 Node.js 开发环境》](https://github.com/alsotang/node-lessons/tree/master/lesson0)\n* Lesson 1: [《一个最简单的 express 应用》](https://github.com/alsotang/node-lessons/tree/master/lesson1)\n* Lesson 2: [《学习使用外部模块》](https://github.com/alsotang/node-lessons/tree/master/lesson2)\n* Lesson 3: [《使用 superagent 与 cheerio 完成简单爬虫》](https://github.com/alsotang/node-lessons/tree/master/lesson3)\n* Lesson 4: [《使用 eventproxy 控制并发》](https://github.com/alsotang/node-lessons/tree/master/lesson4)\n* Lesson 5: [《使用 async 控制并发》](https://github.com/alsotang/node-lessons/tree/master/lesson5)\n* Lesson 6: [《测试用例：mocha，should，istanbul》](https://github.com/alsotang/node-lessons/tree/master/lesson6)\n* Lesson 7: [《浏览器端测试：mocha，chai，phantomjs》](https://github.com/alsotang/node-lessons/tree/master/lesson7) -- by [@elrrrrrrr](https://github.com/elrrrrrrr)\n* Lesson 8: [《测试用例：supertest》](https://github.com/alsotang/node-lessons/tree/master/lesson8)\n* Lesson 9: [《正则表达式》](https://github.com/alsotang/node-lessons/tree/master/lesson9)\n* Lesson 10: [《benchmark 怎么写》](https://github.com/alsotang/node-lessons/tree/master/lesson10)\n\n## 计划\n* 《作用域与闭包：this，var，(function () {})》\n* 《线上部署：heroku》-- by [@Ricardo-Li](https://github.com/Ricardo-Li/)\n* 《cookie 与 session》\n* 《何为 connect 中间件》\n* 《Mongodb 与 Mongoose 的使用》-- by [@Ricardo-Li](https://github.com/Ricardo-Li/)\n* 《一个简单的 blog》-- by [@Ricardo-Li](https://github.com/Ricardo-Li/)\n* 《持续集成平台：travis》-- by [@Ricardo-Li](https://github.com/Ricardo-Li/)\n\n## 本课程特点\n\n* 每一课的课程目标如果有能力完成，则可考虑放弃阅读课程内容\n* 对 web 开发初学者不友好，对 Windows 用户不友好，对 ruby on rails 开发者友好\n* 内容笼统，课程重点随心所欲\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetpi%2Fnode-lessons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnetpi%2Fnode-lessons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetpi%2Fnode-lessons/lists"}