Skip to content Skip to sidebar Skip to footer

Javascript Equivalent To Composer

Is there a package dependency manager such as composer, but for JavaScript files. I want to use my js files that are in one project (one repository) in another project (another rep

Solution 1:

try https://yarnpkg.com

  • you have packages.json like composer.json
  • you have CLI commands like composer
  • you have yarn.lock like composer.lock

https://yarnpkg.com/en/docs/usage

Post a Comment for "Javascript Equivalent To Composer"