react-native-gfycat-export

React Native library which allows you to export the gif and mp4 file.

Usage no npm install needed!

<script type="module">
  import reactNativeGfycatExport from 'https://cdn.skypack.dev/react-native-gfycat-export';
</script>

README

React Native: react-native-gfycat-export

GitHub package version github home platforms github home npm

github issues github closed issues Issue Stats github license

📖 Getting started

$ npm install react-native-gfycat-export --save

💻 Usage

import * as React from 'react';
import { View } from 'react-native';
import { GfResolve } from 'react-native-gfycat-export';

let url = 'https://gfycat.com/clumsyfloweryamericancrayfish-happy-pcmasterrace-smile-joy';

export default class App extends React.Component {
  componentDidMount() {
    GfResolve(url, 3)
      .then(r => console.log('Result:', r))
      .catch(error => {
        console.error('Error:', error);
      });
  }
  render() { return null; }
}

💡 Props

Prop Type Default Note
url string Url of the file to be exported.
type number 3 File format to export.

Type

  1. -small.gif
  2. -max-1mb.gif
  3. -size_restricted.gif
  4. -mobile.mp4

📜 License

This library is provided under the Apache License.