Giter Club home page Giter Club logo

node-vcf's Introduction

VCF / vCard

npm npm downloads build status

Install via npm

$ npm install vcf

Usage

var vCard = require( 'vcf' )

Parsing a string or buffer:

// 'data' being either a string or a buffer
// or something that can be turned into a string
// and represents vcard data
var card = new vCard( data )
// OR
var card = vCard.parse( data )

Stringify:

var str = card.toString()
// OR with version number (doesn't work, yet)
var str = card.toString( '4.0' )

Example output:

{
  version: '4.0',
  n: {
    data: 'Gump;Forrest;;;'
  },
  fn: 'Forrest Gump',
  org: {
    data: 'Bubba Gump Shrimp Co.'
  },
  title: {
    data: 'Shrimp Man'
  },
  photo: {
    data: 'http://www.example.com/dir_photos/my_photo.gif'
  },
  tel: [{
    type: ['work', 'voice'],
    value: 'uri',
    data: 'tel:+1-111-555-1212'
  }, {
    type: ['home', 'voice'],
    value: 'uri',
    data: 'tel:+1-404-555-1212'
  }],
  adr: {
    type: 'work',
    label: '42 Plantation St.\\nBaytown, LA 30314\\nUnited States of America',
    data: ';;42 Plantation St.;Baytown;LA;30314;United States of America'
  },
  email: {
    data: '[email protected]'
  }
}

node-vcf's People

Contributors

jhermsmeier avatar 1ec5 avatar

Watchers

James Cloos avatar Javier Garmon avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.