New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

node-ico-watchlist-api

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-ico-watchlist-api

Nodejs wrapper for icowatchlist.com

latest
Source
npmnpm
Version
1.0.5
Version published
Maintainers
1
Created
Source

node-ico-watchlist-api

Nodejs wrapper for icowatchlist.com

Build Status

NPM

API Implementation

Check examples folder for more info

const icowatchlistAPI = require('node-ico-watchlist-api'); // use node-ico-watchlist-api in production
const ico = new icowatchlistAPI()
ico.getFinished(function(resp,data){
  if(resp){
    console.log(JSON.stringify(data))
  } else {
    console.log('\nError');
  }
})

All callbacks have the same structure

/*
* @return {Boolean} response: result of the call.
* @return {String} json: data returned from icowatchlist.com API in JSON format, if the response is false json is an empty string
*/
callback(response,json);

Callbacks:

icoapi.getAll()
icoapi.getLive()
icoapi.getUpcoming()
icoapi.getFinished()

Keywords

nodejs

FAQs

Package last updated on 06 Nov 2019

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