赞
踩
在控制台输入
npm install crypto-js
创建好了会多几个文件
crypto-js是我们刚刚装的包,用于hash算法和aes des算法
当我们把node-modules删了,或者是新建一个文件后我们不用把这个node-modules拷贝过去
在控制台直接输入
npm install
程序就会自动读取这个package.json文件
并把文件里的node-modules文件和版本自动安装上
在下载的时候可能会很慢这个时候我们可以把他改为国内的地址
在终端输入
npm config set registry https://registyp.npmmirror.com
查看我们的路径是否修改的完成
npm config get registry
恢复官方的下载源
npm config set registry https://registry.npmjs.org
npm uninstall crypto-js
npm list
npm list 模块名
npm list crypto-js
更新mode-modules中的所有模块
npm update
更新某一个模块
npm update crypto-js
npm install -g cnpm --registry=https://registry.npmmirror.com
包很大下载慢就可以用这个淘宝开发的
安装后就用
cnpm install进行安装
有时会报错
那么直接在电脑设置里输入powershell回车
然后选择第二给
进入后勾选然后点击应用
然后再到终端输入cnpm install 就可以了
到要用的js文件中创建在引入.最后在用Cryptn.就可以用模块的方法了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。