Create a vCard from an object. Simple wrapper around vcards-js.
npm i create-vcardimport createVCard from 'create-vcard';
const card = createVCard({
firstName: 'Max',
lastName: 'Stoiber'
});
console.log(card.getFormattedString());This will log the following:
BEGIN:VCARD
VERSION:3.0
FN;CHARSET=UTF-8:Max Stoiber
N;CHARSET=UTF-8:Stoiber;Max;;;
REV=2017-10-28T15:26:54+02:00
END:VCARDSee src/index.js for a list of all the valid properties.
See vcards-js for documentation of how to use the returned vCard. (this module returns a vcards-js instance)
The most useful method is card.getFormattedString() as shown above.
Licensed under the MIT License, Copyright ©️ 2017 Maximilian Stoiber. See LICENSE.md for more information.