I need to manage a git repository from a Node.js application. Is there a git wrapper library or something that lets me call git functions high level and interpret the result without having to parse the console output?
Asked
Active
Viewed 357 times
1
-
**See Also**: [Has anyone implemented a git clone or interface library using nodejs?](https://stackoverflow.com/q/5955891/1366033) – KyleMit Jan 01 '22 at 13:43
1 Answers
2
I think you are looking for http://www.nodegit.org/ ?
npm install nodegit

Amey Jadiye
- 3,066
- 3
- 25
- 38
-
nodegit is a binding for libgit2, does it mean I won't need git installed in the system where the app is running? – Maikel Ruiz Oct 30 '15 at 22:14
-