notifme / notifme-sdk

A Node.js library to send all kinds of transactional notifications.
https://notifme.github.io/www/
MIT License
1.94k stars 150 forks source link

requiring 'notifme-sdk' results in error #68

Closed lidorcg closed 4 years ago

lidorcg commented 4 years ago

when using require to import 'notifme-sdk' an error occur when trying to create a client.

the solution for me was:

const NotifmeSdk = require("notifme-sdk").default;
BDav24 commented 4 years ago

yes, that's expected since this lib uses es6 export syntax.