npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

q-git

v0.0.0

Published

Interface with a JS-Git repository as a Q-IO compatible file system

Readme

Q-Git

Interface with a JS-Git repository as a Q-IO compatible file system.

Usage

npm install --save js-git q-git git-node-fs

Create a repository. For example, this repository is backed by the .git on your local file system. JS-Git requires a certain amount of ceremony oweing to its many layers of configurability and code reuse.

var repo = {};
repo.rootPath = fs.join(__dirname, "..", ".git");
require("git-node-fs/mixins/fs-db")(repo, repo.rootPath);
require('js-git/mixins/create-tree')(repo);
require('js-git/mixins/pack-ops')(repo);
require('js-git/mixins/walkers')(repo);
require('js-git/mixins/read-combiner')(repo);
require('js-git/mixins/formats')(repo);

Then create a file system face for that repository. From there, you must either load a reference from the repository, or create an orphan branch by clearing the index.

var gitFs = new GitFs(repo);
return gitFs.load(ref);
// or...
return gitFs.clear();

The Git file system supports a very close approximation of the interface the Q-IO file system. Each change to the file system constructs a new tree, including streaming writes to files.

In addition to the file system interface, there are methods for manipulating the index, commiting, and updating references. The index tracks the current tree, last commit, and the reference the index was last loaded or saved from. All of these return promises for the file system itself.

  • load(ref) sets the index’s reference, last commit, and current tree to values obtained from the repository through the reference.
  • clear() clears the index’s last known commit, reference, and tree. This can be called initially to start with an empty commit log and tree.
  • commit({message, author: {name, email}, parents: []) creates a commit, parented in the previous commit if no parents are specified, with the given message and author and the current tree, but does not save the commit to a reference.
  • save() writes the last commit to the last reference loaded or saved.
  • saveAs(ref) writes the last commit to the given reference.

Copyright and License

Copyright (c) 2014, Montage Studio and contributors.

BSD 3-Clause License (enclosed).