1.0.4 • Published 9 months ago

csv-contacts-parser v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

csv-contacts-parser

Extract Basic Contact Lists from CSV Files

Installation

npm install csv-contacts-parser

Usage

const csvContacts = require('csv-contacts-parser');

const json = await csvContacts.parse({
  path: 'path/to/csv/file.csv'
});

Options

  • path (string, required): Path to the CSV file.

Output

The output is a JSON object with the following structure:

{
  "path": "path/to/csv/file.csv",
  "contacts": [
    {
      "email": "joe.blow@nowhere.com",
      "name": "Joe Blow"
    },
    {
      "email": "mike.smith@nowhere.com",
      "name": "Mike Smith"
    }
  ]
}

Contact Information

If you ever need a hand or have any questions, feel free to reach out.

Fred Lackey
https://fredlackey.com
fred.lackey@gmail.com

1.0.4

9 months ago

1.0.3

9 months ago

1.0.2

9 months ago

1.0.1

9 months ago

1.0.0

9 months ago