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

node-gitio

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-gitio

A simple Node CLI wrapper for git.io.

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-77.78%
Maintainers
1
Weekly downloads
 
Created
Source

node-gitio Build Status

A simple Node CLI wrapper for http://git.io.

In Terminal, simply enter gitio shrink followed by the GitHub URL you would like to shrink and the shortened URL will be copied automatically to your clipboard. Read more about git.io here.

Copying to clipboard is implemented via the copy-paste package which supports OSX, Windows, Linux, and OpenBSD.

A quick note: This is not a generic URL shortener. git.io—and by extension, this package—only shortens links that are hosted within the github.com domain.


Install

$ npm install -g node-gitio

Quick Visual Guide

$ gitio shrink github.com/.../my_cool_package

# => http://git.io/vZHUg  ✔ copied to clipboard


$ gitio shrink github.com/.../my_cool_package -c mycoolpackage

# => http://git.io/mycoolpackage  ✔ copied to clipboard

Usage

Usage: gitio [--version] [--help] <command> [<args>]

Commands:

  shrink  Shrink a GitHub URL.

Options:

       --help, -h  Show the help menu.

    --version, -v  Show version number.

Shrink
Usage: gitio shrink <long url> [-c code] [--help]

Options:

     --code, -c  A custom code for the short link, e.g. http://git.io/mycode. (Optional)

     --help, -h  Show the help menu.

Node JS API

var gitio = require('node-gitio');

gitio.shrink(payload, (err, result) => {
  if (!err) {
    console.log(result);
  }
});

Payload
NameTypeDescriptionRequired
urlstringThe GitHub URL to shorten. Only HTTPS is supported.
codestringA custom code for the short link, e.g. http://git.io/mycode.
Examples
  1. Shorten github.com/nathanbuchar/node-gitio.
$ gitio shrink github.com/nathanbuchar/node-gitio

# => https://git.io/vZ9RJ  ✔ copied to clipboard
  1. Shorten github.com/nathanbuchar/node-gitio and attempt to use nathan-gitio as the custom code (if available).
$ gitio shrink github.com/nathanbuchar/node-gitio -c nathan-gitio

# => https://git.io/nathan-gitio  ✔ copied to clipboard
  1. Shorten github.com/nathanbuchar/node-gitio via Node JS and log the result.
var gitio = require('node-gitio');

gitio.shrink({
  url: 'github.com/nathanbuchar/node-gitio'
}, (err, result) => {
  if (!err) {
    console.log(result);
    // => https://git.io/vZ9RJ
  }
});

Authors

License

MIT

Keywords

FAQs

Package last updated on 16 Jan 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