Skip to content

Commit

Permalink
docs: update readme titles
Browse files Browse the repository at this point in the history
  • Loading branch information
wdavidw committed Nov 15, 2021
1 parent d99d904 commit 2d903b5
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 13 deletions.
6 changes: 2 additions & 4 deletions packages/csv-generate/README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@

# CSV generator for Node.js and the web - `csv-generate` package
# CSV generator for Node.js and the web

[![Build Status](https://img.shields.io/github/workflow/status/adaltas/node-csv/Node.js)](https://github.com/adaltas/node-csv/actions)
[![NPM](https://img.shields.io/npm/dm/csv-generate)](https://www.npmjs.com/package/csv-generate)
[![NPM](https://img.shields.io/npm/v/csv-generate)](https://www.npmjs.com/package/csv-generate)

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

[Documentation for the "csv-generate" package is available here](https://csv.js.org/generate/).
The [`csv-generate` package](https://csv.js.org/generate/) provides a flexible generator of random CSV strings and Javascript objects implementing the Node.js `stream.Readable` API. It is part of the [CSV project](https://csv.js.org/).

## Documentation

Expand Down
6 changes: 4 additions & 2 deletions packages/csv-parse/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@

# CSV parser for Node.js and the web - `csv-parse` package
# CSV parser for Node.js and the web

[![Build Status](https://img.shields.io/github/workflow/status/adaltas/node-csv/Node.js)](https://github.com/adaltas/node-csv/actions)
[![NPM](https://img.shields.io/npm/dm/csv-parse)](https://www.npmjs.com/package/csv-parse)
[![NPM](https://img.shields.io/npm/v/csv-parse)](https://www.npmjs.com/package/csv-parse)

The [`csv-parse` package](https://csv.js.org/parse/) is a parser converting CSV text input into arrays or objects. It is part of the [CSV project](https://csv.js.org/).

Part of the [CSV module](https://csv.js.org/), this project is a parser converting CSV text input into arrays or objects. It implements the Node.js [`stream.Transform` API](http://nodejs.org/api/stream.html#stream_class_stream_transform). It also provides a simple callback-based API for convenience. It is both extremely easy to use and powerful. It was first released in 2010 and is used against big data sets by a large community.
It implements the Node.js [`stream.Transform` API](http://nodejs.org/api/stream.html#stream_class_stream_transform). It also provides a simple callback-based API for convenience. It is both extremely easy to use and powerful. It was first released in 2010 and is used against big data sets by a large community.

## Documentation

Expand Down
4 changes: 2 additions & 2 deletions packages/csv-stringify/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

# CSV stringifier for Node.js and the web - `csv-stringify` package
# CSV stringifier for Node.js and the web

[![Build Status](https://img.shields.io/github/workflow/status/adaltas/node-csv/Node.js)](https://github.com/adaltas/node-csv/actions)
[![NPM](https://img.shields.io/npm/dm/csv-stringify)](https://www.npmjs.com/package/csv-stringify)
[![NPM](https://img.shields.io/npm/v/csv-stringify)](https://www.npmjs.com/package/csv-stringify)

This package is a stringifier converting records into a CSV text and
The [`csv-stringify` package](https://csv.js.org/stringify/) is a stringifier converting records into a CSV text and
implementing the Node.js [`stream.Transform`
API](https://nodejs.org/api/stream.html). It also provides the easier
synchronous and callback-based APIs for conveniency. It is both extremely easy
Expand Down
6 changes: 3 additions & 3 deletions packages/csv/README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@

# CSV for Node.js and the web - `csv` package
# CSV for Node.js and the web

[![Build Status](https://img.shields.io/github/workflow/status/adaltas/node-csv/Node.js)](https://github.com/adaltas/node-csv/actions)
[![NPM](https://img.shields.io/npm/dm/csv)](https://www.npmjs.com/package/csv) [![NPM](https://img.shields.io/npm/v/csv)](https://www.npmjs.com/package/csv)

This project provides CSV generation, parsing, transformation and serialization
The `csv` project provides CSV generation, parsing, transformation and serialization
for Node.js.

It has been tested and used by a large community over the years and should be
considered reliable. It provides every option you would expect from an advanced
CSV parser and stringifier.

The `csv` package exposes 4 packages:
This package exposes 4 packages:

* [`csv-generate`](https://csv.js.org/generate/)
([GitHub](https://github.com/adaltas/node-csv/tree/master/packages/csv-generate)),
Expand Down
6 changes: 4 additions & 2 deletions packages/stream-transform/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@

# Stream transformation for Node.js and the web - `stream-transform` package
# Stream transformation for Node.js and the web

[![Build Status](https://img.shields.io/github/workflow/status/adaltas/node-csv/Node.js)](https://github.com/adaltas/node-csv/actions)
[![NPM](https://img.shields.io/npm/dm/stream-transform)](https://www.npmjs.com/package/stream-transform)
[![NPM](https://img.shields.io/npm/v/stream-transform)](https://www.npmjs.com/package/stream-transform)

Part of the [CSV module](https://csv.js.org/), this project is a simple object transformation framework. It implements the Node.js [`stream.Transform` API](http://nodejs.org/api/stream.html#stream_class_stream_transform). It also provides a simple callback-based API for convenience. It is both extremely easy to use and powerful.
The [`stream-transform` project](https://csv.js.org/transform/) is a simple object transformation framework. It is part of the [CSV project](https://csv.js.org/).

The Node.js [`stream.Transform` API](http://nodejs.org/api/stream.html#stream_class_stream_transform) is implemented for scalability. The callback-based and sync APIs are also available for convenience. It is both easy to use and powerful.

## Documentation

Expand Down

0 comments on commit 2d903b5

Please sign in to comment.