After I upgraded to latest stable node
and npm
, I tried npm install moment --save
.
(升级到最新的稳定node
和npm
,我尝试了npm install moment --save
。)
It saves the entry in the package.json
with the caret ^
prefix. (它将条目以尖号^
保存在package.json
。)
Previously, it was a tilde ~
prefix. (以前,它是一个波浪号~
前缀。)
- Why are these changes made in
npm
? (为什么在npm
进行这些更改?)
- What is the difference between tilde
~
and caret ^
? (是什么波浪之间的区别~
和尖^
?)
- What is the advantages over others?
(与其他相比有什么优势?)
ask by Fizer Khan translate from so 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…