开发流程 创建一个工程,名为my_demo 使用git初始化 使用npm初始化 添加.gitignore文件,内容如下: node_modules .DS_Store .idea .vscode git提交:init proj 关联并推送到gitee 新建index.js 设置package.json的脚本start,用于运行index.js命令 安装lodash 编写下面的代码 import { tr 项目构建 仔仔 2023-11-13 2440 热度 0评论
npm 常用指令 npm config get registry npm config set registry https://registry.npm.taobao.org npm config set registry https://registry.npmjs.org/ npm init # 初始化工程,帮助生成 package.json 文件 npm init -y # 初始化工程,全部使用默认配置生成 项目构建 仔仔 2023-08-09 2325 热度 0评论