Manage third-party Javascript libraries for all projects

The company I work with develops and supports several web products. We pushed teams to standardize and reuse third-party libraries of all kinds through prod. deviation We use Ivy to manage jar file dependencies for Java. We use Python eggs in conjunction with custom RPM settings to manage Python dependencies.

I was wondering if there is a similar way to manage Javascript dependencies (e.g. jquery, raphaeljs, etc.).

+4
source share
1 answer

You might want to check out RequireJS or Ender .

[Refresh]

Today, March 31, 2017, there are many different package managers and / or tools that you could use to manage external libraries (npm, bower, rollup, etc.), but currently I have found Yarn and Webpack 2 most interesting.

+3
source

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


All Articles