cryptoticker-ts
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

Crypto Ticker

This NPM module is able to get the price of certains cryptocurrency from the following websites:

This project was originally created by codingdefined and I decided to make a strongly typed version of his library.

How To Install?

To install this dependence, you only need to run the following command in your command line:

npm i cryptoticker-ts --save

Examples

Javascript

var crypto = require('cryptoticker-ts');
crypto.getPrice('bitcoin').then(data => {
    console.log(data)
});
Output should be an array with the prices

TypeScript

import * as crypto from 'cryptoticker-ts';
crypto.getPrice('bitcoin').then(data => {
    console.log(data)
});
Output should be an array with the prices

AMD

define(function(require,exports,module) {
  var crypto = require('cryptoticker-ts');
});

How To Contribute?

To contribute to this library, fork the repo, make your changes, run the npm test command and if it pass, make a PR (Pull Request)

Package Sidebar

Install

npm i cryptoticker-ts

Weekly Downloads

1

Version

1.0.0

License

MIT

Last publish

Collaborators

  • jayserm