Embed Data Import into your Product
Explore the docs »
·
Join Discord
·
Report Bug
⭐️ Why
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.
✨ Features
- 🌈 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
📦 Install
npm install @impler/react
yarn add @impler/react
🔨 Usage
Add Script
You copy this snippet to your code before the closing body tag.
<script type="text/javascript" src="https://localhost:4701/embed.umd.min.js" async></script>
Add Import Button
import { Button as ImportButton } from '@impler/react';
<ImportButton
projectId="<PROJECT_ID>"
template="<CODE_OR_ID>" /* optional */
accessToken="<SECRET>" /* required if API is protected */
/>