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

portablegit

v100.5.0

Published

๐Ÿ”„ Redistribution of Git for Windows PortableGit

Downloads

447

Readme

PortableGit via npm

๐Ÿ”„ Redistribution of Git for Windows's PortableGit via npm

npx -p portablegit git add --all
npx -p portablegit git commit --message "Hello world!"
npx -p portablegit bash -c "grep version package.json"
npx -p portablegit sh ./build.sh
npx -p portablegit git-bash
npx -p portablegit gitk HEAD

๐Ÿ”ถ Use Git for Windows via npm
๐Ÿ‘จโ€๐Ÿ’ป Provides bash via Git Bash
๐Ÿ’พ Uses a portable installation of Git & Bash
๐ŸŸฆ Only works on Windows
๐Ÿงฐ Useful when you need a specific Git version

Installation

npm pnpm Yarn Bun Windows

You can install this package using npm or your favorite npm package manager. If possible you should use the user or global Git for Windows installation instead of this package.

npm install --save-dev portablegit

โš ๏ธ It's not recommended to install this package globally! Install Git for Windows normally on your system instead. Interested in installing Git globally on more that just Windows machines? Check out Git - Installing Git.

๐Ÿ›‘ Only works on Windows x64 systems. Does not work on macOS or Linux.

โ„น There is no JavaScript component to this package; it's just a redistribution of the various PortableGit files and binaries.

Usage

Windows

You can use this package just as you would any other npm package that provides binaries! It's just that these binaries are Windows-specific. ๐Ÿคทโ€โ™‚๏ธ

npx -p portablegit git --version
#=> git version 2.X.Y.windows.Z

Available binary commands exposed through this npm package are:

  • bash: Git Bash bash.exe. Useful for cross-platform scripting. You can run Bash scripts on Windows!
  • sh: Git Bash sh.exe. Runs bash.exe in POSIX mode.
  • git: The actual git.exe binary for Windows. See the Git website to learn more about Git.
  • git-bash: Launches a terminal emulator running Git Bash. Uses MinTTY.
  • git-cmd: Starts a cmd.exe subshell preloaded with git.exe and other things in $PATH. Does not launch a new window.
  • git-gui: Starts the Git GUI.
  • gitk: Starts the GitK GUI.

You can import.meta.resolve() or require.resolve() anything that would normally be in the extracted PortableGit/* folder. Here's an example:

const cat = import.meta.resolve("portablegit/usr/bin/cat.exe");
console.log(cat);
//=> 'file:///C:/Users/you/Documents/myproject/node_modules/portablegit/out/portablegit/usr/bin/cat.exe'

const cut = require.resolve("portablegit/usr/bin/cut.exe");
console.log(cut);
//=> 'C:\\Users\\you\\Documents\\myproject\\node_modules\\portablegit\\out\\portablegit\\usr\\bin\\cut.exe'

This can be useful if you need to resolve the path to a specific binary (cat.exe, cut.exe, etc.) that isn't exposed by default.

Development

Node.js GitHub Actions

You'll need a Windows computer to test this package locally. You can run npm run build to make sure everything looks good locally. npm run generate will check for a new Git for Windows PortableGit release and download it if it exists. There's a CI script that automatically runs npm run generate every so often and will open Pull Requests for updates. Merging these PRs to main does not automatically create a new release -- that must be done manually. Each new release automagically publishes to npm.