3 repository-uri
Version control implementations written entirely in JavaScript to avoid system binary dependencies.
Distinct from Git: Distinct from Git: focuses on the specific implementation language (JavaScript) and its ability to run without a system binary.
Explore 3 awesome GitHub repositories matching devops & infrastructure · JavaScript-Native Implementations. Refine with filters or upvote what's useful.
obsidian-git is a version control integration for personal knowledge management that enables local file versioning and synchronization. It provides Git-based tracking for local files to allow for history auditing, document reversion, and the backup of notes to remote servers. The project automates the version control process through scheduled background syncing, which triggers automatic commits and pushes at set intervals or during application startup. It facilitates collaborative editing by using branches and synchronization to manage contributions and merge changes. The toolset covers comp
Performs all version control operations using a JavaScript library instead of relying on a system-installed Git binary.
Isomorphic-git is a full implementation of the Git version control system written in JavaScript. It serves as a programmatic client library that allows developers to perform core version control operations without requiring a system-level Git binary installation. The library is designed as an isomorphic codebase, meaning it runs identically across both client-side web browser environments and server-side Node.js runtimes. It achieves this by using a filesystem-agnostic storage model and a pure JavaScript implementation of the Git core logic and the Smart HTTP protocol. The project covers a c
Provides a full implementation of Git core logic written entirely in JavaScript to remove native binary dependencies.
js-git is a modular JavaScript implementation of the Git protocol and object model. It provides a content-addressable storage engine that manages blobs, trees, and commits using cryptographic hashes, allowing version control functionality to operate without external system dependencies. The project features a pluggable repository interface and storage layer, enabling Git data to be persisted across diverse mediums such as browser databases or local file systems. It includes a streaming packfile processor for packing and unpacking objects to facilitate efficient data transfer. The library cov
Provides a complete implementation of the Git protocol and object model written entirely in JavaScript.