0.0.1 ā€¢ Published 3 years ago

msgpack.io v0.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

Support encrypt and compress message with json format

Usage

Environment

NodeJS: 12.x.x and above

Install

npm install msgpackio

Example

const {MsgPackIO} = require("msgpackio");

const msgpack = new MsgPackIO({ compress: true, encrypt: {secret: '<secret_key>'} });

const data = { message: 'Hello msgpackio' };

const encodeData = msgpack.pack(data) // output Buffer;

const decodeData = msgpack.unpack(encodeData) // output json;

## Author

šŸ‘¤  **Truong Anh Vo** ([@vophitruonganh](https://github.com/vophitruonganh))

## Show your support

Give a ā­ļø if this project helped you!