Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/a/node-smsc
- Owner: A
- Created: 2014-01-21T09:39:13.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-04T18:42:24.000Z (almost 11 years ago)
- Last Synced: 2024-04-14T20:16:00.965Z (8 months ago)
- Language: JavaScript
- Size: 141 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
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);
});
```