Every team has to make various decisions before, and during, the development of a digital product. One of these usually involves yarn, npm or another tool to build and package javascript code. Some developers have a burning desire to go in a certain direction, and sometimes they end up spending a considerable amount of time trying to make decisions that in fact will have little impact in their everyday life.

To understand why this is an interesting decision to make in the first place, we need to have a look at the history of package management in javascript.
- Pre
npm: frontend dependencies are downloaded manually and stored into the repositories ๐ - 2010:
npmis released and supportsnodejs๐ฆ - 2012:
npmusage is dramatically increasing - primarily due toBrowserifysbrowser support ๐ - 2012:
npmget a competitor,bower, that entirely supports browsers ๐ป - 2012-2016: The number of dependencies for frontend projects increases exponentially ๐คฏ
- 2012-2016: Building and installing frontend applications becomes slower and slower ๐ข
- 2012-2016: An infinite amount of (duplicated) dependencies are stored in nested folders within the magic
node_modulesโข๏ธ - 2012-2016:
rm -rf node_modulesthe most frequently used command as a frontend developer..? ๐ - 2015:
bowerlose the battle againstnpm๐ - 2015:
node_modulesare changed to a (more) flatten file structure! ๐ธ - 2016:
left-padbecomes the worldwide news of the day ๐ - 2016:
yarnis released ๐- Supports both
npmandbowerrepositories yarn.locklocks installed versions and provide deterministic dependencies. No morerm -rf node_modules!yarn installspend about half the time versusnpm install(without using cache)- Caching and offline mode enables build processes to consume nearly no time
- Supports both
- 2016:
npmreleasesshrinkwrap๐งฏ- An attempt to handle dependency locking
- Unfortunately, several errors and promising more than it could manage - the reputation of the tool became poor
- 2017:
npm5 is released ๐package-lock.jsonis their new tool,shrinkwrapis put asidepackage-lock.jsontake on the fight againstyarnslock file
- 2018:
npm ciis released ๐ฌ- Build code using
package-lock.jsondirectly - No expensive security and version analyses on the dependencies
- Build time is drastically reduced on the build server!
- Build code using
- 2018:
npm6 is released ๐ฎโโ๏ธnpmcheck security vulnerabilities for dependencies to be installed- No significant variance in build time between
yarnandnpm
- 2019:
tinkis in beta mode ๐ฆ- Avoid using
node_modulesand rather have one file with hashes for each dependency in the project - Not yet production-ready
- Avoid using
- ...
Phew ๐ฅต
As we can see, after the release of yarn, npm has been inspired (and forced?) to develop lots of good tools and mechanisms. yarn should get credit for addressing some important problems related to npm and put pressure on their competitor back in 2016. Both speed, security and deterministic package handling are essential features that allow today's developers to focus and concentrate on creating value - and not fighting the tool.
Conclusion ๐ค
For convenience, I would recommend most teams (who have to make numerous other and more important technologically decisions) to choose the easiest option - npm. It is shipped with node and is, in 2019, sufficient enough to handle package management in a good manner.
Always an exception? ๐ง
When using monorepo, yarn workspaces is a popular alternative whereas npm doesn't offer an equivalent alternative. lerna is a package that also supports usage of monorepos and works with both npm and yarn (with workspaces)
pnpm ๐ฅ
PS: It should be mentioned that pnpm is the third option for package management. pnpm's selling point is not downloading a package if it is already downloaded in another repository - which is similar to dependency management in Java, maven. At the time of writing, pnpm is not as mature and production-ready as yarn or npm