美文网首页
Day31 npm相关

Day31 npm相关

作者: JSleefat | 来源:发表于2019-05-04 00:15 被阅读0次

Tips

有些包可能被墙或者速度很慢
可以使用淘宝镜像试试
npm install cnpm -g --registry=https://registry.npm.taobao.org

安装命令

  • -P, --save-prod: Package will appear in your dependencies. This is the default unless -D or -O are present.
  • -D, --save-dev: Package will appear in your devDependencies.
  • -O, --save-optional: Package will appear in your optionalDependencies.
  • --no-save: Prevents saving to dependencies.
  • When using any of the above options to save dependencies to your package.json, there are two additional, optional flags:
  • -E, --save-exact: Saved dependencies will be configured with an exact version rather than using npm’s default semver range operator.
  • -B, --save-bundle: Saved dependencies will also be added to your bundleDependencies list.

-P(生产环境)
如iView框架,部署后也需要依赖
-D(开发环境)
如loader,babel这类只有开发的时候需要的包

参考:
npm-install

相关文章

  • Day31 npm相关

    Tips 有些包可能被墙或者速度很慢可以使用淘宝镜像试试npm install cnpm -g --registr...

  • npm 相关

    1.新装第三方库 :npm install 库名 --save 2.复制或下载项目:npm install 3.安...

  • npm相关

    收集一些window下npm相关的资料。 1.npm未能加载Visual C++组件,解决办法win10 错误提示...

  • npm相关

    Vue:1,使用Vue需要用到脚手架 vue-li,安装的时候用webpack-simple安装脚手架2,使用之...

  • NPM相关

    npm 官网镜像国内访问太慢,这里我使用了淘宝的npm镜像,安装方法如下: 执行后我们就可以使用 cnpm 命令来...

  • npm相关

    1、npm安装模块 【npm install xxx】利用 npm 安装xxx模块到当前命令行所在目录;【npm ...

  • npm相关

  • Npm相关

    package.json scripts配置下的命令,可以在‎⁨项目的⁨node_modules⁩/⁨.bin⁩下...

  • npm相关

    (1)查看npm 仓库,修改仓库也可以修改这个配置文件,并source 有时候依赖报错,可以删除node_modu...

  • npm 相关

    查看包的所有版本 npm view package versions npx 简化模块调用npx 作用是执行某个模...

网友评论

      本文标题:Day31 npm相关

      本文链接:https://www.haomeiwen.com/subject/uestoqtx.html