# mincsv

> Minimal CSV parser.

Latest version **1.0.1** (published 2016-02-25) · MIT license · 0 weekly downloads

## Install

```sh
npm install mincsv
pnpm add mincsv
yarn add mincsv
bun add mincsv
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2016-02-25 |
| First published | 2016-02-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | Damian Janowski |
| Maintainers | djanowski |
| Keywords | csv |

## Links

- npm: https://www.npmjs.com/package/mincsv
- Repository: https://github.com/djanowski/node-mincsv
- Homepage: https://github.com/djanowski/node-mincsv#readme
- Issues: https://github.com/djanowski/node-mincsv/issues
- npm.io page: https://npm.io/package/mincsv

## Alternatives

- [@sapphire/ratelimits](https://npm.io/package/@sapphire/ratelimits.md) — 4.4K weekly downloads
- [js-csvparser](https://npm.io/package/js-csvparser.md) — 2.0K weekly downloads
- [@adadapted/js-sdk](https://npm.io/package/@adadapted/js-sdk.md) — 251 weekly downloads
- [@grapecity/spread-sheets-sparklines](https://npm.io/package/@grapecity/spread-sheets-sparklines.md) — 103 weekly downloads
- [@1selfworld/adchain-sdk-react-native](https://npm.io/package/@1selfworld/adchain-sdk-react-native.md) — 80 weekly downloads

## Recent versions

- 1.0.1 (latest) — 2016-02-25
- 1.0.0 — 2016-02-25

## README

mincsv
======

A minimal CSV parser for Node.js.


Motivation
----------

I couldn't find a simple CSV parser that would:

- Transform rows into objects by reading a header line.
- Provide both a standard API returning arrays of objects
  and also expose a Stream Transform for more efficient
  processing.
- Support quoted fields.
- Be readable.
- Less important, but: read like modern JavaScript.


Usage
-----

```javascript
const mincsv  = require('./index');
const request = require('request');

request('http://example.com', function(error, response, body) {
  const rows = mincsv.parse(body);
  console.log(rows);
});
```


Roadmap
-------

- Provide a Stream Transform API.


LICENSE
-------

MIT

---
_Source: https://npm.io/package/mincsv · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
