博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
我可以通过复制node_modules来移动依赖库吗?
阅读量:6291 次
发布时间:2019-06-22

本文共 1209 字,大约阅读时间需要 4 分钟。

hot3.png

简单的讲,是可以的。但是每个人电脑环境的不同,node_module安装的顺序也不同,可能会出问题不同的问题,虽然说依赖树的结构并不影响您的工程,但为安全起见,如果遇到问题时,请直接在工程目录下面npm install,假设工程下有package.json文件。那么你将得到跟来源机器完全一样的依赖库。

 meaning you may get different packages depending on the order in which packages have been installed over time. This isn't necessarily a bad thing, just something to be aware of.

npmv3依赖安装是不确定的了,意思是你将在不同的运行环境安装不同顺序的依赖包,一般不是件坏事,但要知道。

Given this change I personally don't copy my node_modules directory around too much (it's still possible though!) and instead opt for a clean install most of the time.

根据这个变化我个人是不经常复制node_modules(虽然仍有可能!)而是保留/opt/目录一个干净的安装版本。

There are new tools like  which can speed up the installation process if you are doing that a lot (but as of 2017-05-12 it's unclear how well it handles private npm organisations and private scoped packages).

这里介绍一个加速安装过程的包管理器,如果你需要经常移动依赖包的话(但目前为止不确定对私有包管理的好不好)

So the takeaway is still pretty much the same: it won't hurt, but maybe err on the side of a clean install. If something weird does happen and you run into problems then you can just delete node_modules and run npm install.

所以结论仍是:无害,但可能出错,如果见鬼了,你可以直接干掉node_modules然后npm install

Thanks to 

转载于:https://my.oschina.net/swingcoder/blog/909935

你可能感兴趣的文章
RocketMQ与Kafka对比(18项差异)
查看>>
Android学习--------实现增删改查数据库操作以及实现相似微信好友对话管理操作...
查看>>
兔子--eclipse设置编码格式
查看>>
[转]程序集之GAC---Global Assembly Cache
查看>>
英语词汇(5)followed by / sung by / written by
查看>>
HDFS Namenode启动过程
查看>>
SQL Server查询某个字段存在哪些表中
查看>>
web实现QQ第三方登录 开放平台-web实现QQ第三方登录
查看>>
【划分树+二分】HDU 4417 Super Mario
查看>>
WPF 基础到企业应用系列1——开篇故意
查看>>
Android - TextureView, SurfaceView和GLSurfaceView 以及 SurfaceTexture
查看>>
【GoldenGate】使用OGG,两个Oracle库之间单向同步数据
查看>>
Jenkins构建完成后通过SVN Publisher Plugin上传文件到指定的SVN(教程收集)
查看>>
10-01 Java 类,抽象类,接口的综合小练习--运动员和教练
查看>>
一级域名和二级域名的区别是什么?作用怎样?
查看>>
Jedis连接redis
查看>>
在windows下安装python包管理器pip及使用
查看>>
CSS属性选择器和部分伪类
查看>>
JAVA正則表達式小总结
查看>>
BEGINNING SHAREPOINT® 2013 DEVELOPMENT 第12章节--SP 2013中远程Event Receivers 总结
查看>>