前几天组团开发一个CRM 项目前端使用的是 nodejs vue element-ui
1.下载并安装
1.点击 下载node.js
2.选择 Current 版本即可
3.选择安装路径的时候我是选择 D:\nodejs
2.设置nodejs prefix(全局)和cache(缓存)路径
1、在nodejs安装路径下,新建node_global和node_cache两个文件夹
2、设置缓存文件夹
npm config set cache “D:\nodejs\node_cache”
设置全局模块存放路径
npm config set prefix “D:\nodejs\node_global”
设置成功后,之后用命令npm install XXX -g安装以后模块就在D:\nodejs\node_global里
基于 Node.js 安装cnpm(淘宝镜像) 注国内使用nodejs 如果使用 nmp 可能导致安装失败的问题 除非你能使用VPN 加速
npm install -g cnpm --registry=https://registry.npm.taobao.org
npm ERR! code ENOLOCAL
npm ERR! Could not install from “registry=https:\registry.npm.taobao.org” as it does not contain a package.json file.
npm ERR! A complete log of this run can be found in:
请尝试以下命令
npm cache verify npm cache clean --force npm install -g cnpm --registry=http://registry.npm.taobao.org
设置环境变量(非常重要)
说明:设置环境变量可以使得住任意目录下都可以使用cnpm、vue等命令,而不需要输入全路径
1、(win7 部分win 10)鼠标右键”此电脑”,选择“属性”菜单,在弹出的“系统”对话框中左侧选择“高级系统设置”,弹出“系统属性”对话框。
(新版win 10 )控制面板\系统和安全\系统 ->高级系统设置,弹出 系统属性 对话框
2、修改系统变量PATH D:\nodejs\node_global
3、新增系统变量NODE_PATH D:\nodejs\node_modules
5.安装Vue
cnpm install vue -g
6.安装vue命令行工具,即vue-cli 脚手架
cnpm install vue-cli -g
7.新项目的创建
1.打开存放新建项目的文件夹
打开开始菜单,输入 CMD,或使用快捷键 win+R,输入 CMD,敲回车,弹出命令提示符。打开你将要新建的项目目录
2.根据模版创建新项目
在当前目录下输入“vue init webpack-simple 项目名称(使用英文)”。
vue init webpack-simple mytest
8.安装工程依赖模块
定位到mytest的工程目录下,安装该工程依赖的模块,这些模块将被安装在:mytest\node_module目录下,node_module文件夹会被新建,而且根据package.json的配置下载该项目的modules
cd mytest
cnpm install
8.运行该项目,测试一下该项目是否能够正常工作,这种方式是用nodejs来启动。
cnpm run dev
遇到的一些问题
1. 遇到版本过新的错误
Uncaught TypeError: Cannot assign to read only property 'exports' of object '#<Object>' BaseClient.js:23 Uncaught TypeError: Cannot assign to read only property 'ex
新的webpack已经不允许 import 和 module.exports 共存
查看 package.json文件,发现webpack-dev-server这个有改动,变成了最新版本
于是我通过git查找出之前的版本,改了过来,在 npm i -D webpack-dev-server@3.0.0 重新安装,就可以跑起来了
2.当然如果你版本太新话又会爆这个错
webpack-dev-server --inline --progress --config build/webpack.dev.conf.js 10% building modules 2/2 modules 0 activei 「wds」: Project is running at http://0.0.0.0:8080/ i 「wds」: webpack output is served from / i 「wds」: Content not from webpack is served from F:\xampp\crm\ux i 「wds」: 404s will fallback to /index.html events.js:292 throw er; // Unhandled 'error' event Error: spawn cmd ENOENT at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) at onErrorNT (internal/child_process.js:469:16) at processTicksAndRejections (internal/process/task_queues.js:84:21) Emitted 'error' event on ChildProcess instance at: at Process.ChildProcess._handle.onexit (internal/child_process.js:273:12) at onErrorNT (internal/child_process.js:469:16) at processTicksAndRejections (internal/process/task_queues.js:84:21) { errno: 'ENOENT', code: 'ENOENT', syscall: 'spawn cmd', path: 'cmd', spawnargs: [ '/c', 'start', '""', '/b', 'http://0.0.0.0:8080/' ] } npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! 5kcrm@9.0.0 dev: `webpack-dev-server --inline --progress --config build/webpack.dev.conf.js` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the edz@9.0.0 dev script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above. npm ERR! A complete log of this run can be found in:
从新安装需要的版本
npm i -D webpack-dev-server@3.0.0
从新 npm run dev 即可
转载请注明:(●--●) Hello.My Weicot » Windows环境搭建 nodejs 开发环境 以及安装 vue 等