cnpm安装的时候出现的一个问题. 使用npm install cnpm -g --registry=https://registry.npm.taobao.org命令的时候就会出现下图中的WARN. 接下来就该耐心的看一看这个WARN,大概在说版本问题吧?图片上的倒数第二行可能就是给你推荐的版本. 换个命令试一试,这次使用npm install npm@5.3.0   @后是你对应的npm版本号 ,可以通过npm -v 查看 使用cnpm -v 命令查看一下是否安装成功,如下图:…
执行npm install 时,提示警告信息: Error: npm WARN deprecated minimatch@2.0.10: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue 更新 minimatch 方法如下: 更新命令—— $ npm update minimatch 检查版本—— $ npm -v minimatch 如果版本没有更新成功,执行下面的命令—— $ npm install…
更新下 使用yarn貌似会帮助跳过这个问题: info fsevents@2.1.2: The platform "win32" is incompatible with this module.info "fsevents@2.1.2" is an optional dependency and failed compatibility check. Excluding it from installation.info fsevents@1.2.9: The p…
问题:在使用npm安装hexo时报错 $ npm install -g hexo npm WARN deprecated swig@1.4.2: This package is no longer maintained 解决办法: 执行命令'npm config set registry https://registry.npm.taobap.org',然后重新打开git bash执行'npm install -g hexo'即可    …
vue运行时 eslint 报“import/first”  WARN deprecated browserslist 问题解决 这个信息的意思是导入文件顺序不对,绝对导入应该放在相对导入前面.将绝对导入代码放到相对导入前面就行了. 原因是eslint是严格语法检查的,如果出现连续两个空行也会报错编译不过. --------------------------- 在搭建vue框架,新建一个webpack打包项目时,会出现npm WARN deprecated browserslist@2.11.…
react-native init的时候出现问题:npm WARN React-native@0.35.0 requires a peer of react@~15.3.1 but none was 2017年12月05日 10:23:35 笨笨CEO 阅读数:4625 标签: react native 更多 个人分类: react native   react-native init的时候出现问题: 报错信息 解决方案: 方法一:npm install -save react@~15.3.1…
You may meet this error on home directory. % npm uninstall appium npm WARN uninstall not installed in /Users/hrt0kmt/node_modules: "appium" You must uninstall npm package on directory which contains same node_modules. % cd /Users/hrt0kmt/.nodebr…
安装本地全局包时,本地报错 npm WARN checkPermissions Missing write access to /Users/xxx/.nvm/versions/node/v11.10.0/lib/node_modules/xxxx 执行sudo还是报这个错误,在网上查找解决方法,终于解决. 打开Finder,选择前往 --> 前往文件夹 -->输入报错路径,点击前往,点开文件夹,在文件夹中删除包的全部内容.完美解决…
想要利用Hexo搭建一个博客,但是安装时npm一直报错,不仅仅是Hexo包,连别的其他包也不行,会提示下面的一堆错误 npm WARN onload-script failed to require onload script npm-autoinit/autoinit npm WARN onload-script failed to require onload script npm-autoinit/autoinit npm WARN onload-script Error: Cannot…
今天在使用npm安装插件的时候提示如下错误: npm WARN install Refusing to install vue-router as a dependency of itself npm 阻止安装插件. 将npm的镜像改成taobao的镜像后测试还是不行,修改npm镜像: sudo npm install -g cnpm --registry=https://registry.npm.taobao.org 后来发现是因为package.json里面的name名字和插件的名字同名,导…