csv-contacts-parser
v1.0.4
Published
Extract Basic Contact Lists from CSV Files
Downloads
306
Maintainers
Readme
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": "[email protected]",
"name": "Joe Blow"
},
{
"email": "[email protected]",
"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
[email protected]