Skip to content

forwarder/meteor-fullcontact

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

meteor-fullcontact

FullContact API client for Meteor

Installation

meteor install forwarder:fullcontact

Usage

To create a new client you simply need to construct the module with your FullContact API key:

var fullcontact = new FullContact(Meteor.settings.fullContact.apiKey);

Alternatively you can also use the provided createClient method, is that's how you roll.

var fullcontact = FullContact.createClient(Meteor.settings.fullContact.apiKey);

Unlike the Node.JS version, all methods can be called synchronous.

var data = fullcontact.person.email('foo@bar.com');

And ofcourse asynchronous.

var data = fullcontact.person.email('foo@bar.com', function (err, data) {
  ..
});

License

The module is released under the MIT license.

About

FullContact API client for Meteor

Resources

License

Stars

Watchers

Forks

Packages

No packages published