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 🙏

© 2024 – Pkg Stats / Ryan Hefner

extract-git-treeish

v3.1.0

Published

extract git tree-ish (commits, branches, or tags) into target directory

Downloads

51

Readme

extract-git-treeish

Extracts git tree-ish (commits, branches, or tags) into target directory.

Build Status NPM version Code Style License

USAGE

exists

const { exists } = require('extract-git-treeish');
const assert = require('assert').strict;
assert(await exists({ treeIsh: 'master' }) === true);
assert(await exists({ treeIsh: 'doesnotexist' }) === false);
import { exists } from 'extract-git-treeish';
import assert from 'node:assert/strict';
assert(await exists({ treeIsh: 'master' }) === true);
assert(await exists({ treeIsh: 'doesnotexist' }) === false);

extract

const { extract } = require('extract-git-treeish');
const assert = require('assert').strict;
const path = require('path');
const destDir = path.join(process.cwd(), 'demo', 'v1');
const extracted = await extract({ treeIsh: 'v1.0.0', dest: destDir })
assert.deepEqual(extracted, {
  treeIsh: 'v1.0.0',
  dir: '/path/to/cwd/demo/v1'
});
import { extract } from 'extract-git-treeish';
import assert from 'node:assert/strict';
import { join } from 'node:path';
const destDir = join(process.cwd(), 'demo', 'v1');
const extracted = await extract({ treeIsh: 'v1.0.0', dest: destDir });
assert.deepEqual(extracted, {
  treeIsh: 'v1.0.0',
  dir: '/path/to/cwd/demo/v1'
});

API

exists({ treeIsh, [gitProjectRoot], [spawnOptions] }): Inquires for existence of treeIsh

  • returns Promise which will:
    • resolve with true when tree-ish exists
    • resolve with false when tree-ish does not exist
  • treeIsh(string) is a name of a git tree-ish (commit, branch, or tag) to be inquired
    • when treeIsh argument is omitted:
      • throw TypeError
    • when treeIsh argument is not a string:
      • throw TypeError
  • gitProjectRoot(string) is an optional directory path pointing to top level directory of git project
    • when gitProjectRoot option is omitted:
      • and when process.cwd() is inside the git project:
        • resolves as usual
      • and when process.cwd() is outside the git project:
        • returns Promise which will reject with Error
    • when specified gitProjectRoot is pointing to git project root:
      • resolves as usual
    • when specified gitProjectRoot is not a git repository (or any of the parent directories):
      • returns Promise which will resolve with false
    • when specified gitProjectRoot is pointing to directory that does not exist:
      • returns Promise which will reject with Error
    • when gitProjectRoot argument is not a string:
      • throw TypeError when number
      • throw TypeError when boolean

extract({ treeIsh, dest, [gitProjectRoot], [spawnOptions] }): Extracts contents of treeIsh into dest directory

  • returns Promise which will:
    • resolve with object containing {treeIsh, dir} when succeeded
    • extract tree-ish content into dest on resolve
  • treeIsh(string) is a name of a git tree-ish (commit, branch, or tag) to be extracted into dest
    • when tree-ish specified by treeIsh does not exist:
      • reject with Error
    • when treeIsh argument is omitted:
      • throw TypeError
    • when treeIsh argument is not a string:
      • throw TypeError
  • dest(string) is a directory path which extract going to extract tree-ish content
    • when directory specified by dest does not exist:
      • creates dest recursively then resolves as usual
    • when directory specified by dest already exists:
      • resolves as usual when dest directory is empty
      • rejects with Error when dest directory is not empty
      • rejects with Error when dest directory is not writable or dest is not a directory
    • when dest argument is omitted:
      • throw TypeError
    • when dest argument is not a string:
      • throw TypeError
  • gitProjectRoot(string) is an optional directory path pointing to top level directory of git project
    • when gitProjectRoot option is omitted:
      • when process.cwd() is inside the git project:
        • resolves as usual
      • when process.cwd() is outside the git project:
        • returns Promise which will reject with Error
    • when specified gitProjectRoot is pointing to git project root and treeIsh exists too:
      • resolves as usual when dest is empty
    • when specified gitProjectRoot is not a git repository (or any of the parent directories):
      • returns Promise which will reject with Error
    • when specified gitProjectRoot is pointing to directory that does not exist:
      • returns Promise which will reject with Error
    • when gitProjectRoot argument is not a string:
      • throw TypeError when number
      • throw TypeError when boolean

INSTALL

$ npm install extract-git-treeish

AUTHOR

LICENSE

Licensed under the MIT license.