Skip to content

niranjannitesh/react-native-msgpack

Repository files navigation

react-native-msgpack

Native MessagePack for React Native

Installation

npm install react-native-msgpack

Usage

import { encode, decode } from 'react-native-msgpack';

// ...

const result = encode({ hello: 'world' });
const decoded = decode(result);

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