Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 565 Bytes

README.md

File metadata and controls

33 lines (21 loc) · 565 Bytes

react-native-msg-pack

just msg pack wrapper for rn

Installation

npm install react-native-msg-pack

Usage

import { parse, encode, install } from 'react-native-msg-pack';

// ...
install();
const encoded = encode({a: 10});
const result = parse(encoded);
assert(result.a == 10);

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


Made with create-react-native-library