Native MessagePack for React Native
npm install react-native-msgpack
import { encode, decode } from 'react-native-msgpack';
// ...
const result = encode({ hello: 'world' });
const decoded = decode(result);
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library