Petah
Petah

Reputation: 46040

Is there a dependency management tool/library for JavaScript?

Is there a dependency management tool/library for JavaScript?

PHP has Composer and Packagist.

Ruby on Rails has Bundler.

What is available for JavaScript?

Upvotes: 2

Views: 2414

Answers (2)

jabclab
jabclab

Reputation: 15042

Have a look at Bower.

You can specify a components.json file which contains all the dependencies for your project.

Upvotes: 4

Andreas Köberle
Andreas Köberle

Reputation: 110922

There is npm for nodejs and requirejs for dependency management in the browser.

Upvotes: 3

Related Questions