1.0.13 • Published 4 years ago

npm-modules-report v1.0.13

Weekly downloads
3
License
ISC
Repository
github
Last release
4 years ago

npm-modules-report

npm-modules-report helps you to assemble specific information about npm modules inside your package.json in form of table and export it as xlsx file.

Installing

Using npm:

$ npm install npm-modules-report

Example #1

const generateReport = require("npm-modules-report");
const packageFile = require("./package.json");

// it will create npm_report folder with report.xlsx inside
generateReport(
  packageFile, // required
  ["name", "description", "version", "author"] // optional. default ['name', 'description']
).then(output => console.log(output)); // resolves the data that has been exported

report.xlsx example. You can then edit your file however you like in your favorite xlsx editor

Preview

Example #2 via terminal

npx build-npm-report

or with arguments

npx build-npm-report name description version

Dependencies:

  • xlsx - Parser and writer for various spreadsheet formats
1.0.13

4 years ago

1.0.12

4 years ago

1.0.11

4 years ago

1.0.9

4 years ago

1.0.10

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.2

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago