Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gitify-dependencies

Package Overview
Dependencies
Maintainers
13
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gitify-dependencies

CLI tool for replacing node dependencies with their respective git repositories

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
13
Created
Source

gitify-dependencies Build Status

CLI tool for replacing node dependencies with their respective git repositories.

Installation

npm install -g gitify-dependencies

Usage

gitify-deps [--options]

Options

FlagEnvironment variableDescriptionAllowed valuesDefault value
--checkout-tags
-c
CHECKOUT_TAGSIf a dependency is already a git repo, the CLI will just "git checkout" the version specified in npm-shrinkwrap.json.'yes', 'no''no'
--gitify-url-pattern
-p
GITIFY_URL_PATTERNSpecify a pattern that gets matched against the package's url.
Please note, that you must either set this flag or the environment variable!
nonenone
--node-projects-dir
-d
NODE_PROJECTS_DIRSet a path which will keep the git repository's data.none$HOME/.gitify

Idea

This tool walks through your npm-shrinkwrap.json file and does the following things for every dependency (and it's sub-dependencies):

  1. Clone or update the package's repo in {NODE_PROJECTS_DIR}/{name of the dependency}.
  2. Back up the package's private node_modules directory if present.
  3. Remove any existing package.
  4. Create a new git "workdir" in it's place that shares the same repository as {NODE_PROJECTS_DIR}/{name of the dependency}.
  5. Restore the package's private node_modules.

In practice you can treat this like a sort of "linked clone" of the original repo. Objects and refs (branches and tags) will be shared between all workdirs, but each one will have it's own working tree, HEAD, and index (staging area). One caveat is that only the git repository is synced, making changes and commiting in one workdir doesn't affect the files in another workdir. Use feature branches

More information about workdirs:

Keywords

FAQs

Package last updated on 14 Jun 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc