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

@crypti/ccoin

v0.3.2

Published

Convert and fetch the cost of cryptocurrencies within your terminal

Downloads

12

Readme

ccoin Build Status Coverage Status

Convert and fetch the price conversions of cryptocurrencies within your terminal

demo

Install

$ npm install --global @crypti/ccoin

Usage

Usage
  $ ccoin [Commands]
  $ ccoin -f=[fromSymbols] -t=[toSymbols] [options]

Commands
  ls                 List all saved profiles
  [profile name]     Load the given profile by name

Options
  -f, --from         A comma-delimited list of symbols to convert from
  -t, --to           A comma-delimited list of symbols to convert to
  -s, --save         Save this as a named profile
  -d, --set-default  Set this as the default profile
  -r, --remove       Remove a named profile

Examples
  $ ccoin -f=BTC -t=ETH,USD,LTC
  $ ccoin --from=BTC,ETH --to=USD,LTC,EUR

Tip: For a list of 3-letter symbols you can use with this module see cryptocurrencies.

Profiles

Profiles are a handy way to save --from and --to options without having to type them manually everytime.

To Save a Profile

Use the --save option or -s flag to save a profile by name (both examples are equivalent):

$ ccoin -f=BTC,ETH -t=USD,JPY --save=yen
$ ccoin -f=BTC,ETH -t=USD,JPY -s=yen

To Load a Profile

Once you have a profile saved, you can just call it by name:

$ ccoin yen

To List All Available Profiles

Use the ls command to list all your available Profiles:

$ ccoin ls
Available Profiles:
  yen: -f=BTC,ETH -t=USD,JPY

To Set a Default Profile

You can set a default profile with the --set-default option or the -d flag (both examples are equivalent):

$ ccoin -f=BTC,ETH -t=USD,JPY -d
$ ccoin -f=BTC,ETH -t=USD,JPY --set-default

To Load the Default Profile

If you have a default profile set, then you don't have to do anything, you can just type ccoin at the terminal and your default profile will be loaded. However, you can also load the default profile by name, so both of these examples will load the default profile (if one has been supplied):

$ ccoin
$ ccoin default

To Remove a Profile

Use the --remove option or -r flag to remove a named Profile (both examples are equivalent):

$ ccoin -r=yen
$ ccoin --remove=yen

Related

eth-price - Fetch and compare current ETH price to other currencies/cryptocurrencies in your terminal.

License

MIT © Crypti Team