expressjs框架官方
egg框架文档
webpack中文文档
nodejs
vue3
node 配置
C:\www\nodejs 添加到环境变量
C:\app\nodejs\node-global 加入环境变量
.npmrc配置
registry=http://registry.npmmirror.com
prefix=C:\app\nodejs\node-global
cache=C:\app\nodejs\node-cache
python=C:\app\python\version\2.7.1\python.exe
配置新建两个目录在node下面
npm config set prefix "C:\app\nodejs\node-global"
npm config set cache "C:\app\nodejs\node-cache"
npm config set registry http://registry.npmmirror.com
- 常见 模块
cnpm --registry=http://registry.npmmirror.com 中文npm
less 编译css
sass 编译scss
supervisor 热部署工具,程序目录执行 supervisor 1.js
express node框架
uglify-js 压缩js工具 uglifyjs umi.js -m -o umi.min.js
vue@next vue3稳定版
@vue/compiler-sfc vue单组件
@vue/cli vue3安装cli
element-plus vue3饿了么框架
element-ui vue2饿了么框架
webpack 打包工具
webpack-cli cli打包
vite 打包工具vue3优先
axios ajax请求
node-fetch ajax请求
@types/faker 随机数据假数据
ts-node 直接运行ts脚本
clipboard 粘贴
dayjs 时间日期
node命令
node -v 尽量安装12.18.1以上 npm -v npm config list 查看配置 npm run serve 低版本用的是dev,本地运行 npm run build 打包 npm install -g npm 升级npm自己 npm uninstall -g xxx 卸载全局包 npm list 当前目录已安装插件 npm get registry 查看源 npm update –dave-dev 更新全部插件 npm ls -g --depth 0 查看全局模块 npm ls --depth 0 查看本地模块 rm -rf node_modules/ 删除扩展重新安装 npm install npm config set registry http://registry.npmjs.org 切回官方npm npm i --save-dev 简写 -D //构建 npm i --save 简写 -S //生产
yarn
npm install -g yarn
yarn --version yarn init 初始化项目 yarn config set sass-binary-site http://npm.taobao.org/mirrors/node-sass yarn config set ignore-engines true yarn add [package] 添加包 yarn add node-sass -g 安装到全局 yarn add vite@2.4.4 -g yarn upgrade [package] 升级包 yarn remove [package] 移除包 yarn 安装依赖 yarn upgrade 删除后重建 rm -rf node_modules/ 删除node文件夹 yarn dev yarn lint:eslint yarn build yarn add @types/faker -D 添加到开发环境
文档更新时间: 2023-10-31 09:47 作者:Yoby