A simple library for vCard generation compatible with RFC 6350, RFC 6474. RFC 6715 and RFC 8605.

Example

Functional / Object based generateVCard

import generateVCard, { Kind } from "generate-vcard";

const vCard = generateVCard({
kind: Kind.Individual,
fullName: "Jane Doe",
});

Example

Functional / Array based generateVCard

import generateVCard, { Kind, PropertyName } from "generate-vcard";

const vCard = generateVCard([
{ property: PropertyName.kind, value: Kind.Individual },
{ property: PropertyName.fullName, value: "Jane Doe" },
]);

Example

Class based VCard

import { VCard } from "generate-vcard";

const vCard = new VCard(Kind.Individual);
vCard.setFullName("Jane Doe");

vCard.toString();

Index

Generate

Properties

Gender Kind PropertyName AddressPropertyDict GenderPropertyDict NamePropertyDict AddressProperty AddressPropertyValue AltProperty AnniversaryProperty AnniversaryPropertyValue BeginProperty BeginPropertyValue BirthPlaceProperty BirthPlacePropertyValue BirthdayProperty BirthdayPropertyValue CalendarAddressUriProperty CalendarAddressUriPropertyValue CalendarUriProperty CalendarUriPropertyValue CategoriesProperty CategoriesPropertyValue ClientPidMapDictionary ClientPidMapProperty ClientPidMapPropertyValue ContactUriProperty ContactUriPropertyValue DeathDateProperty DeathDatePropertyValue DeathPlaceProperty DeathPlacePropertyValue EmailProperty EmailPropertyValue EndProperty EndPropertyValue ExpertiseProperty ExpertisePropertyValue FbUrlProperty FbUrlPropertyValue FullNameProperty FullNamePropertyValue GenderProperty GenderPropertyValue GeoLocationProperty GeoLocationPropertyValue HobbyProperty HobbyPropertyValue ImppProperty ImppPropertyValue InterestProperty InterestPropertyValue KeyProperty KeyPropertyValue KindProperty KindPropertyValue LanguageProperty LanguagePropertyValue LogoProperty LogoPropertyValue MemberProperty MemberPropertyValue MultiOrSingleProperty MultiProperty NameProperty NamePropertyValue NickNameProperty NickNamePropertyValue NoteProperty NotePropertyValue OrgDirectoryProperty OrgDirectoryPropertyValue OrganizationProperty OrganizationPropertyValue PhotoProperty PhotoPropertyValue ProductIdProperty ProductIdPropertyValue Property RelatedProperty RelatedPropertyValue RevisionProperty RevisionPropertyValue RoleProperty RolePropertyValue SoundProperty SoundPropertyValue SourceProperty SourcePropertyValue TelProperty TelPropertyValue TimezoneProperty TimezonePropertyValue TitleProperty TitlePropertyValue UidProperty UidPropertyValue UrlProperty UrlPropertyValue VersionProperty VersionPropertyValue XmlProperty XmlPropertyValue

Parameters

Data Types

Other

Internally Used

Generated using TypeDoc