Skip to content

harshdoshi999/npm-stat-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

#About

Node Package's Statistics API

Our functions will provide statistics of node package.

This is a Node.js API wrapper for the NPM API and Registry.

Installation

Install via NPM

npm install npm-stat-api --save

Example

i. Get Stats of Package

var npm = require('npm-stat-api');

// Parameters:
// 1. Package Name
// 2. Start Date
// 3. End Date
npm.stat('nutrient-database','2016-07-20','2017-08-20', function(err, response){
	console.log(JSON.stringify(response));
});

ii. Get Details of Package

var npm = require('npm-stat-api');

// Parameters:
// 1. Package name
npm.details('nutrient-database', function(err, response){
	console.log(JSON.stringify(response));
});

Any issue or want more features? Contact me!

This module has been tested under limited scenarios. If you find any issue please feel free to report via one of the below platforms:

Github: npm-stat-api | Email: [email protected] | Skype: harshxxx3

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published