javascript - convert executable to node module/object -
i tried searching, not luck.
i want convert/wrap executable use , nicely in node, , not calling child_process.exec time.
example, if wanted git, instead of git help
or git clone git://repo.git
i'll have somethings like:
var git = new cmd('git'); git.help(); git.clone('git://repo.git'); etc..
doe's knows if exist?
the closest thing i've found far run-cmd can somethings not automatically. i'll need create object parameters want.
thanks, ariel
Comments
Post a Comment