nodejs
#1 Node.js 运行时与架构概览
从零理解 Node.js 的本质——V8 引擎与 libuv 的协作、事件驱动与非阻塞 I/O 模型,以及 Node.js 24 带来的 Permission Model、Stable Test Runner 和原生 WebSocket 客户端等新特性。
Read MoreDiscover 5 articles in nodejs.
从零理解 Node.js 的本质——V8 引擎与 libuv 的协作、事件驱动与非阻塞 I/O 模型,以及 Node.js 24 带来的 Permission Model、Stable Test Runner 和原生 WebSocket 客户端等新特性。
Read More全面掌握 Node.js 的两种模块系统——深入理解 require/module.exports 的加载机制、ESM 的静态导入导出、__dirname 与 import.meta.url 的差异,以及 package.json 中 type 与 exports 字段的最佳实践。
Read More快速掌握 Node.js 最常用的四大内置模块——path 跨平台路径处理、os 系统信息读取、util 实用工具与 EventEmitter 的订阅发布模式,帮你写出更健壮的 Node.js 代码。
Read More深入理解 Node.js 包管理的核心概念,包括 package.json 字段解析、语义化版本控制、npm scripts 与 npx 的使用,以及 node_modules 解析规则和 pnpm/yarn 的对比分析。
Read More使用 Node.js 内置 http 模块从零搭建 Web 服务器,掌握请求/响应对象解析、路由分发、静态文件服务与错误处理等核心技能,为后续学习 Express/Fastify 打下基础。
Read More