wrangler-action/node_modules/csv-generate
2023-08-07 15:11:15 -05:00
..
lib Temp fix for deps issue 2023-08-07 15:11:15 -05:00
LICENSE Temp fix for deps issue 2023-08-07 15:11:15 -05:00
package.json Temp fix for deps issue 2023-08-07 15:11:15 -05:00
README.md Temp fix for deps issue 2023-08-07 15:11:15 -05:00

Build Status NPM NPM

CSV and object generation

This package provides a flexible generator of CSV strings and Javascript objects implementing the Node.js stream.Readable API.

Documentation for the "csv-generate" package is available here.

Documentation

Main features

  • Scalable stream.Readable implementation
  • random or pseudo-random seed based generation
  • Idempotence with the "seed" option
  • User-defined value generation
  • Multiple types of values (integer, boolean, dates, ...)
  • MIT License

Usage

Run npm install csv to install the full csv module or run npm install csv-generate if you are only interested by the CSV generator.

Use the callback style API for simplicity or the stream based API for scalability.

Development

Tests are executed with Mocha. To install it, simple run npm install followed by npm test. It will install mocha and its dependencies in your project "node_modules" directory and run the test suite. The tests run against the CoffeeScript source files.

To generate the JavaScript files, run npm run coffee.

The test suite is run online with Travis. See the Travis definition file to view the tested Node.js version.

Contributors