Explore the docs »
·
Join Discord
·
Report Bug
The ability to import data is often needed in the application. It usually starts the same, reading .csv
or .xlsx
file and insert records into the database. But after a while, you'll find yourself looping over large files, validating rows, and providing support for file types that you've never heard of them before.
Impler's goal is to help developers create an efficient and smooth data import experience between the product and its users. All with an easy-to-use API and outstanding developer experience.
- 🌈 Mapping Support between specified Schema and Fields in File
- 💅 Validation Support
- 🚀 Webhook support to send uploaded data
- 🛡 Simple and powerful Authentication
- 📦 Easy to set up and integrate
- 🛡 Written in TypeScript
npm install @impler/react
yarn add @impler/react
You copy this snippet to your code before the in head tag.
<script type="text/javascript" src="https://embed.impler.io/embed.umd.min.js" async></script>
Copy
import { useImpler } from '@impler/react';
const { showWidget, isImplerInitiated } = useImpler({
projectId: "",
templateId: "",
accessToken: "",
});
<button disabled={!isImplerInitiated} onClick={showWidget}>
Import
</button>