react-native-split-file

test


Keywords
react-native, ios, android
License
MIT
Install
npm install react-native-split-file@0.2.0

Documentation

react-native-split-file

A simple react-native library that can split a file into parts of an equal size, with the last part consisting of the remainder.

Designed to be used for multi-part uploads to S3.

Installation

npm install react-native-split-file
# or
yarn add react-native-split-file

Usage

import { splitFile } from 'react-native-split-file';

// ...

const result = await splitFile('/some/big/file.mov', 5000000);
// result is an array of paths to the split files

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