UNPKG

write-npmstat

Version:

write-npmstat makes it easy to collect, filter and save npm statistics to csv files.

50 lines (29 loc) 1.55 kB
[![npm version](https://badge.fury.io/js/write-npmstat.svg)](https://badge.fury.io/js/write-npmstat) [![CI](https://github.com/veghdev/write-npmstat/workflows/CI/badge.svg?branch=main)](https://github.com/veghdev/write-npmstat/actions/workflows/ci.yml) # About The Project write-npmstat makes it easy to collect, filter and save npm statistics to csv files. # Installation write-npmstat requires `npm-stat-api`, `enum`, `csv-writer`, `csv-parser` and `node-fetch` packages. ```sh npm install write-npmstat ``` # Usage ```js const WriteNpmStat = require("write-npmstat").default; const targetPackage = "npm-stat-api"; const csvDir = "stats/npm-stat-api"; const writenpmstat = new WriteNpmStat(targetPackage, csvDir); writenpmstat.writeNpmStat("2021", "2022-03"); writenpmstat.datePeriod = "month"; writenpmstat.writeNpmStat("2022-01", "2022-04-15"); writenpmstat.writeLastWeekNpmStat(); ``` Visit our [documentation](https://veghdev.github.io/write-npmstat/) site for code reference or our [wiki](https://github.com/veghdev/write-npmstat/wiki/) site for a step-by-step tutorial into write-npmstat. # Contributing We welcome contributions to the project, visit our [contributing](https://github.com/veghdev/write-npmstat/blob/main/CONTRIBUTING.md) guide for further info. # Contact Join our [discussions](https://github.com/veghdev/write-npmstat/discussions) page if you have any questions or comments. # License Copyright © 2022. Released under the [Apache 2.0 License](https://github.com/veghdev/write-npmstat/blob/main/LICENSE).