Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for an implementation of git which is accessible from nodejs - does such a beast exist?

share|improve this question
11  
I am curious why this is closed. The question is concise, unambiguous, narrow and - above all - evidently answerable. What am I missing? Was it closed without any comments that would indicate how to improve it? Just seems odd. :) – Brian M. Hunt Jan 1 at 0:19
Also check out github.com/qrpike/NodeJS-Git-Server for a git server written in NodeJS – Quinton Pike Apr 21 at 6:03

closed as not a real question by Bobby, Frédéric Hamidi, Baz, Linger, Shahbaz Dec 14 '12 at 16:08

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

Looks like there are now several options for using git from node:

  • gift: simple Node.js wrapper for the Git CLI with an API based on Grit (npm / github)
  • node-git: a node.js git implementation modeled on grit (npm / github)
  • nodegit: libgit2 asynchronous native bindings (npm / github)
  • node-git: a thin wrapper around the command-line git command (github)
share|improve this answer
node-git doesn't work on 0.8 :( – Andrew Rhyne Dec 27 '12 at 16:01

Note sure if there's a git library for Node but you can also just execute a shell process directly, example:

var sys = require('sys')
var exec = require('child_process').exec;
function puts(error, stdout, stderr) { sys.puts(stdout) }
exec("git status", puts);
share|improve this answer

there is also node-gitteh as libgit2 bindings, but both gitteh and christkv/node-git were not of the quality and completeness I needed

I wrote treeeater a spawn git wrapper, which is callable with plain javascript objects instead of strings, can parse some output (git log → commit objects, git ls-tree → tree object hierachy) and runs async. It is in active use and supports all git commands, atleast for calling them and piping their output chunk or line wise. You can stick to git man-pages to get the documentation to each command.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.