Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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 <>