JavaScript dependency management without NodeJS

Yes, there are several dependency or package management systems for JavaScript and other files. A good example can be found here ! But in fact, all these systems are based on NodeJS

or npm

. I am not a developer NodeJS

and I also do not Git

(I use Egit

). And for this function, I don't want to install NodeJS

or Git

.

So what options remain? I could use Submodules

in Git, but since it's Composer

only for PHP, I don't know of any other solution without installing NodeJS

and Git

.

Am I missing something great?

+3


source to share


1 answer


I found out there is a PHP version Bower

here ! This is great, of course, because NodeJS is no longer needed.



+2


source







All Articles