项目是b站上黑马的,资料都提供了。因为要找实习,选了这个项目写到简历里去。
从今天开始记录复现项目过程中出现的问题
安装Nodejs需要的依赖node_modules:
安装好最新的稳定版之后输入:
npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm install
报错: code 1
发现是版本问题,估计是有的函数都不支持了。遂重新下了Nodejs 11.3版本
再输入后还是报错,
npm ERR! Refusing to delete C:\Users\WangLei\AppData\Roaming\npm\cnpm.cmd: is outside
C:\Users\WangLei\AppData\Roaming\npm\node_modules\cnpm and not a link
npm ERR! File exists: C:\Users\WangLei\AppData\Roaming\npm\cnpm.cmd
npm ERR! Move it away, and try again.
按照要求把cnpm和cnpm.cmd文件给删除了,再用下面的代码清一下缓存
npm cache clean --force
然后就成功运行出前端页面了。