Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/a/node-smsc

Poorly SMSC API implementation
https://github.com/a/node-smsc

Last synced: about 2 months ago
JSON representation

Poorly SMSC API implementation

Awesome Lists containing this project

README

        

# Simply SMSC API implementation for NodeJS

```JS
var Sender = require('smsc');
var sender = new Sender('seryoja', '0po98iu7');

sender.sms(79223438450, 'How are you?', function (err) {
console.log(err);
});
```