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

chauncey

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chauncey

Shorten URLs with bitly.

  • 1.0.14
  • latest
  • Source
  • npm
  • Socket score

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

chauncey

build status npm version npm downloads Dependency status devDependency Status

Shorten URLs with Bitly.

Usage: chauncey <url> [options]

Options:
  -h, --help  Show help

Example:
  chauncey http://google.com/  Shorten http://google.com/ using Bitly

"Chauncey"?

Chauncey McPufferson is Bitly's mascot :smiley:

Installation

$ npm i -g chauncey

Configuration

First you need a Bitly developer access token. You can either pass this token directly via the API, or add it to your user environment so chauncey can pick it up automatically. For example:

$ BITLY_ACCESS_TOKEN=123abc chauncey http://google.com/

You can also use a .chaunceyrc file. Chauncey will look for .chaunceyrc starting in process.cwd(), then ../, ../../, all the way up to the filesystem root. It should have the following content:

export BITLY_ACCESS_TOKEN=123abc

Usage

CLI

Chauncey will output the shortened URL to stdout:

$ chauncey http://google.com/
http://bit.ly/1jib0Hi

So on OS X, you can do stuff like:

$ chauncey http://google.com/ | pbcopy

API

chauncey(url, [token], [done])

Shortens url using the Bitly API.

Arguments

  • url - The URL to shorten.
  • token - Optional Bitly access token. Will take precedence over BITLY_ACCESS_TOKEN defined in the user environment (see configuration).
  • done(error, result) - Optional A callback which is called with the shortened URL, or an error.

Example

import chauncey from 'chauncey';

chauncey({
  url: 'http://google.com/',
  token: '123abc',
  done: (error, result) => {
    if (error) return console.error(error.message);
    console.log(result);
  }
});

Tests

$ npm test

Note

This module uses the Bitly API, but is neither developed nor endorsed by Bitly.

License

MIT

Keywords

FAQs

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