Socket
Socket
Sign inDemoInstall

google-contacts-parser

Package Overview
Dependencies
112
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    google-contacts-parser

Parser for outlook or google contact list (CSV)


Version published
Weekly downloads
1
decreased by-88.89%
Maintainers
1
Install size
4.10 MB
Created
Weekly downloads
 

Readme

Source

Contact List Parser

This is a parser for Outlook or Google contact lists exported as CSV files.

Installation

To use this parser in your project, you can install it via npm:

npm install google-contacts-parser

Usage

import parseContacts from "google-contacts-parser";
...
  // assuming file a buffer
  parseContacts(buffer)
    .then((outputPath) => {
      res.status(200).send({ message: 'File uploaded and parsed successfully.', file: outputPath });
    })
    .catch((error) => {
      res.status(500).send({ error: error.message });
    });

Function

WIP

Testing

This package uses the UVU testing framework. To run the tests, use the following command:

npm test

Contributing

If you find a bug or want to contribute to the code or documentation, you can fork the repository and make changes for a later review and possible project integration.

License

This project is licensed under MIT.

Keywords

FAQs

Last updated on 19 Sep 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc