新建react项目 npm start报错:error Command “start“ not found.

  • Post author:
  • Post category:其他

想新建个项目,做做demo,结果…我就呵呵哒~ 新建react项目: npx create-react-app my-hooks cd my-hooks yarn start 然后报错: 先是怀疑node版本跟npm 版本过低不支持create-react-app脚手架,然后检查一波版本: 我的本地版本为: 好的 让node背锅我道歉, 然后先是试着在父级目录下重新安装了一下脚手架,再次运行 也还…

继续阅读 新建react项目 npm start报错:error Command “start“ not found.

npm ERR! Error: EPERM: operation not permitted

  • Post author:
  • Post category:其他

在根据angular4官网的例子做时,安装完node.js和angular/cli后,进行新建项目 采用命令ng new my-app时,报如下错误 npm WARN tarball tarball data for @angular/compiler@^6.1.0 (sha1-arNchYT72hOmcI3 xS4sDzI+EmpQ=) seems to be corrupted. Trying…

继续阅读 npm ERR! Error: EPERM: operation not permitted

Vue中 npm install时–save和–save-dev的区别

  • Post author:
  • Post category:vue

dependencies和devDependencies 在使用node开发时,我们在工程中用到的包必须在package.json中列出。 而dependencies和devDependencies是package.json中的两个属性,我们要用的包在这两个属性中列出即可 –save和–save-dev 在安装包时, 我们可以根据环境决定包的安装效果. 假设我们要安装express 1.执行 np…

继续阅读 Vue中 npm install时–save和–save-dev的区别

vuecli中npm run lint 报错

  • Post author:
  • Post category:vue

1.打开package.json,在script里找到 修改为:(中间插入–fix) lint": "eslint --fix --ext .js,.vue src ", 2、终端运行npm run lint修改代码样式 3、最后终端运行npm run dev就不会报ESLint错误了。 版权声明:本文为asd577007722原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处…

继续阅读 vuecli中npm run lint 报错

解决npm ERR! code ERESOLVE -npm ERR! ERESOLVE could not resolve

  • Post author:
  • Post category:其他

当使用一份vue源码开发项目时,npm install 报错了 npm ERR! code ERESOLVE npm ERR! ERESOLVE could not resolve npm ERR! npm ERR! While resolving: vue-admin-template@4.4.0 npm ERR! Found: webpack@4.46.0 npm ERR! node_modu…

继续阅读 解决npm ERR! code ERESOLVE -npm ERR! ERESOLVE could not resolve

npm私库搭建

  • Post author:
  • Post category:其他

1.下载  verdaccio npm install verdaccio@4.4.0 - g 运行不起来可以使用 cnpm install -g verdaccio@4.4.0 --unsafe-perm 最新版本有问题,官方没有解决 ( 5.7.0npm发版后,断开链接,获取不到上传的包,但是可以下载 ) 2.执行  verdaccio 打开  C:\Users\Administrator\A…

继续阅读 npm私库搭建

npm报错EPERM: operation not permitted

  • Post author:
  • Post category:其他

目录 一、问题描述 二、解决方法 一、问题描述 npm 编译报错:npm ERR! Error: EPERM: operation not permitted 二、解决方法 以管理员身份运行即可。 删除C:\Users\dengzy.npmrc也可以解决问题,但缓存文件和全局文件会生成在c盘,而不是自己设置的d盘: prefix=D:\Program Files\nodejs\node_globa…

继续阅读 npm报错EPERM: operation not permitted

windows环境下安装npm、cnpm、bower

  • Post author:
  • Post category:其他

什么是npm、cnpm、bower? 简单地说,就是帮你下载好你需要的css或者js库,而且三者功能也都是一样的。那为什么要下载这3个不同的呢?据说npm容易被墙……而cnpm是淘宝的镜像,所以通常用cnpm代替npm。至于bower,是因为bower更多地用于前端开发。但是因为它也是依赖于npm的,所以没有npm,就没法载bower……不知道说了那么多你懂了没,但是这不重要~你所需要做的就是分别…

继续阅读 windows环境下安装npm、cnpm、bower

npm scripts 使用指南

  • Post author:
  • Post category:其他

作者: 阮一峰 日期: 2016年10月11日http://www.ruanyifeng.com/blog/2016/10/npm_scripts.html Node 开发离不开 npm,而脚本功能是 npm 最强大、最常用的功能之一。 本文介绍如何使用 npm 脚本(npm scripts)。 一、什么是 npm 脚本? npm 允许在 package.json 文件里面,使用 scripts …

继续阅读 npm scripts 使用指南