1

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?

Maikel Ruiz
  • 1,342
  • 2
  • 15
  • 25
  • **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 Answers1

2

I think you are looking for http://www.nodegit.org/ ?

npm install nodegit

Amey Jadiye
  • 3,066
  • 3
  • 25
  • 38