RolandJansen / intermix

Typescript/Javascript framework for building sequencer-based audio apps
GNU Lesser General Public License v3.0
6 stars 0 forks source link

compare npm / yarn / parcel #127

Closed RolandJansen closed 3 years ago

RolandJansen commented 4 years ago

Check if yarn has any advantages over npm (in current versions) and compare it with parcel which seems to be quite interesting. If there's an alternative superior to npm, switch tools.

RolandJansen commented 3 years ago

Parcel is a bundler, not a package manager. I just switched from Webpack to Rollup in v0.7.0 so this thing is done. Parcel is good for small packages and its easy to use but I needed support for ES6 modules, good library support and other things so Rollup was a good choice.

Yarn is an alternative client to the npm database. Yarn seems to be more modern with a streamlined interface but npm catched up with the latest releases. Since I'm used to npm I'll keep with it.