Resource for NPM is the most loaded this week / month

Are there sites displaying the most popular modules for the week / month from Node Package Manger (NPM).

I know www.npmjs.com there are packages people 'npm install' a lot , but that rarely changes. I also had Google for something similar, but there was nothing.

I want me to be able to view new / trending packages for node.

+7
source share
2 answers

There is https://npm-stat.com/ , which allows you to view the number of downloads per month / week / day of any individual package.

+1
source share

Most depends on

 var cheerio = require('cheerio'); var request = require('request'); request('https://www.npmjs.com/browse/depended', function (err, res, body) { if (err) return false; var $ = cheerio.load(body); $('h3 a').each(function () { console.log($(this).html() + ' - ' + $(this).attr('href')); }); }); 
0
source share

All Articles