What is the difference between starting yarn and starting npm?

Is yarn run equivalent to npm start ?

+6
source share
1 answer

It seems that yarn run start is the equivalent of npm start , which runs the script inside the start field of the script field in package.json

+14
source

Source: https://habr.com/ru/post/1012356/


All Articles