vcard-json

Easily and smartly convert vcard file(s) to a JSON object.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
vcard-json
840.5.27 years ago9 years agoMinified + gzip package size for vcard-json in KB

Readme

Easily and smartly convert vcard file(s) to a JSON object for node.
var vcard = require('vcard-json');

vcard.parseVcardFile('some-contact.vcf', function(err, data){
  if(err) console.log('oops:'+ err);
  else {
    console.log('should be good to go:\n'+ JSON.stringify(data));    
  }
});

Installation

$ npm install vcard-json