just msg pack wrapper for rn
npm install react-native-msg-pack
import { parse, encode, install } from 'react-native-msg-pack';
// ...
install();
const encoded = encode({a: 10});
const result = parse(encoded);
assert(result.a == 10);
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library