Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/faisalman/sms-pdu-js
SMSPDU.js - SMS PDU library written in JavaScript
https://github.com/faisalman/sms-pdu-js
Last synced: about 1 month ago
JSON representation
SMSPDU.js - SMS PDU library written in JavaScript
- Host: GitHub
- URL: https://github.com/faisalman/sms-pdu-js
- Owner: faisalman
- Created: 2013-03-17T14:52:37.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-03-17T16:36:30.000Z (over 11 years ago)
- Last Synced: 2024-06-24T00:21:30.238Z (5 months ago)
- Language: JavaScript
- Homepage:
- Size: 102 KB
- Stars: 10
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# SMSPDU.js
SMS PDU library written in JavaScript
## Example
### Using browser
```html
var message = 'C8329BFD66818CE1F43CCC6E87DD21'; // 8bit hex representation from SMS-DELIVER TP-UD
console.log(SMSPDU.decodeAs7bitGSM(message)); // Hello, World!```
### Using nodejs
```js
var SMSPDU = require('./sms-pdu');
var message = 'C8329BFD66818CE1F43CCC6E87DD21';
console.log(SMSPDU.decodeAs7bitGSM(message));
```## License
MIT License
Copyright © 2013 Faisalman <>