We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What about including download stats as a parameter correlating to usage of a given module?
The raw data for node-modules package: http://isaacs.iriscouch.com/downloads/_design/app/_view/pkg?group_level=2&start_key=%5B%22node-modules%22%5D&end_key=%5B%22node-modules%22%2C%7B%7D%5D
node-modules
Getting the data using request library:
request
request('http://isaacs.iriscouch.com/downloads/_design/app/_view/pkg', { json: true, qs: { group_level: '2', start_key: JSON.stringify([name]), end_key: JSON.stringify([name, {}]) } }, function(error, response, body) { // ... });
The stats should be aggregated (per week, per month, per year).
The text was updated successfully, but these errors were encountered:
You can see the download stats here: http://npm-stat.com/
Sorry, something went wrong.
@pvorb I receive the following message for the request and for the localeval libraries (and presumably, for many more):
localeval
An error occured. Please try to reload the page or contact me at [email protected] if that doesn't help.
@espadrine see npm/npm-www#328
No branches or pull requests
What about including download stats as a parameter correlating to usage of a given module?
The raw data for
node-modules
package: http://isaacs.iriscouch.com/downloads/_design/app/_view/pkg?group_level=2&start_key=%5B%22node-modules%22%5D&end_key=%5B%22node-modules%22%2C%7B%7D%5DGetting the data using
request
library:The stats should be aggregated (per week, per month, per year).
The text was updated successfully, but these errors were encountered: