https://github.com/niranjannitesh/react-native-msgpack
MessagePack for React Native
https://github.com/niranjannitesh/react-native-msgpack
android ios javascript jsi msgpack react react-native tyepscript
Last synced: 7 months ago
JSON representation
MessagePack for React Native
- Host: GitHub
- URL: https://github.com/niranjannitesh/react-native-msgpack
- Owner: niranjannitesh
- License: mit
- Created: 2023-02-15T07:01:57.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-27T05:50:46.000Z (over 2 years ago)
- Last Synced: 2025-03-20T13:13:39.731Z (7 months ago)
- Topics: android, ios, javascript, jsi, msgpack, react, react-native, tyepscript
- Language: C
- Homepage: https://www.npmjs.com/package/react-native-msgpack
- Size: 460 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# react-native-msgpack
Native MessagePack for React Native
## Installation
```sh
npm install react-native-msgpack
```## Usage
```js
import { encode, decode } from 'react-native-msgpack';// ...
const result = encode({ hello: 'world' });
const decoded = decode(result);
```## Contributing
See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.
## License
MIT
---
Made with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)