Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 1.43 KB

README.md

File metadata and controls

51 lines (34 loc) · 1.43 KB

MailerLite SDK for Node.js

DISCLAIMER: This project is not maintained anymore.

NPM package NPM package Travis Build Travis Build

Node.js wrapper for MailerLite API.

Usage

Install with npm: npm install --save mailerlite.

Browse your lists:

var MailerLite = require('mailerlite');
var ML = new MailerLite(apiKey);
ML.Lists.getAll()
  .then(function(data) {
    console.log(data);
  });

Browse the documentation to read more.

Compatibility

All methods will return promises. Support for callbacks is planned to be implemented soon.

Documentation

License

MIT.