Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Javascript Git client

Is there a Javascript implementation of Git?

I'm wanting to use HTML5 to create a rich Javascript application and have the idea that I could use git to track changes to the data. So, I'm wondering if there is a javascript implementation of a git client, or maybe some way of controlling a git repository by making POST requests.

like image 553
Candidasa Avatar asked Aug 05 '10 02:08

Candidasa


People also ask

What is Git in JavaScript?

Git is a version control system. Git helps you keep track of code changes. Git is used to collaborate on code.

What is Git in node js?

js. Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. Git is easy to learn and has a tiny footprint with lightning fast performance.

What is NPM in Git?

NPM is a node package management tool used to download or publish node packages via the npm package registry. It comes bundled with node. js setup. npmjs offers numerous open-source packages, such as Lodash, React, and Chalk to accelerate the development process.

Is there a Git API?

Libgit2 is a dependency-free implementation of Git, with a focus on having a nice API for use within other programs. You can find it at https://libgit2.org.


1 Answers

Check out: https://github.com/danlucraft/git.js

A pure js implementation of git in javascript.

like image 176
Gord Avatar answered Oct 05 '22 06:10

Gord