Skip to content
This repository has been archived by the owner on Sep 18, 2019. It is now read-only.

Latest commit

 

History

History
51 lines (34 loc) · 1.5 KB

README.md

File metadata and controls

51 lines (34 loc) · 1.5 KB

MailerLite SDK for Node.js

DISCLAIMER: The MailerLite API has been upgraded with breaking changes, making this library deprecated. This project is not maintained anymore because I've quit using MailerLite.

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.

Documentation

License

MIT.