Is `npm install` same as `meteor npm install` in Meteor 1.3?

前端 未结 2 1103
渐次进展
渐次进展 2021-01-06 13:06

Going through some meteor libraries, I notice that npm install and meteor npm install are both used in instructions. I know Meteor 1.3

2条回答
  •  再見小時候
    2021-01-06 13:30

    meteor npm will run npm that has been bundled with meteor, this may be a different version than the version of npm installed globally on your system.

    You can check versions like meteor npm -v and npm -v

提交回复
热议问题