I'm trying to find the best way to use nodejs for a general-crossplatform package manager. I've different projects from different repositories using various programming languages that , in few words , could be combined together to build a set of applications that can communicate with each other.
Now i would simplify the installation process avoiding use multiple manager for each language ( composer for php projects, bower , npm , git etc. )
Initially i thought to use only nodejs and npm to download all repository, but is there a way to specify custom packages with custom repository for various languages?
thanks in advance.