Nodejs学习过程中的一些总结,可点击这里查看完整版。欢迎入群交流,群号 197339705 。
- 基础:核心模块常用API 的使用、注意事项。(含可执行的demo)
- 进阶:项目实战经验总结,含常用框架、库介绍,从编码到服务端部署运维。
- Introduction
- 内置模块
- 资源压缩-zlib(ok)
- 文件系统操作-fs
- 域名解析-dns(ok)
- 网络服务-http(ok)
- 网络服务-http-req(ok)
- 网络服务-http-res(ok)
- 网络服务-http-client(ok)
- 网络服务-http-server(ok)
- 网络服务-https(ok)
- 网络TCP-net(ok)
- 网络UDP-dgram
- 网络地址解析-url(ok)
- 数据加密-crypto
- URL查询字符串-querystring(ok)
- 二进制数据-buffer(ok)
- 子进程-child_process
- 进程相关-process(ok)
- 集群-cluster
- 基础调试-console(ok)
- 进阶调试-debugger(ok)
- 错误处理-error
- 事件机制-events(ok)
- 全局对象-global
- 模块机制-module
- 本地路径处理-path(ok)
- 逐行读取-readline(ok)
- 命令行设计-repl
- 实用工具模块-util(ok)
- 流操作-stream(ok)
- 二进制解码-string_decoder
- 定时器-timers
- 安全加密-tls
- 进阶使用