contact-service-async
v2.0.0
Published
Contact service async operations
Maintainers
Readme
contact-service-async
Asynchronous contact-service operations
* addNewContact
* getAllContacts
* getOneContact
* deleteContact
* updateContactInstallation:
npm install contact-service-async --saveUsage:
var csa = require("contact-service-async");
csa.getAllContacts((err, data)=>{
if(err) throw err;
console.log(data);
});