01 2025 档案
摘要:第一章 CommonJS构建 CommonJS是一种模块化规范,最初是为Node.js设计的,但现在也可以在浏览器中使用。它的核心思想是将代码分割成模块,每个模块都有自己的作用域,通过module.exports来导出模块的内容,通过require来导入其他模块。 CommonJS的示例代码 //模
阅读全文
摘要:1. 报错,大概率由镜像问题导致 2. 解决方案 2.1 打开 npm 配置 npm config edit 2.2 添加配置 registry=https://registry.npmmirror.com electron_mirror=https://cdn.npmmirror.com/bina
阅读全文