Installation
Getting started with the CSV importer.
Before you install the Flatirons Fuse importer, you will need to Create an Importer and add columns to it. The importer can be considered as your system's data schema. It represents the fields that a customer is allowed to import into your system, as well as affording the opportunity to implement numerous options, such as front-end validations, back-end validations, different data types, as well as custom branding.
To use the importer you will need two keys:
You can use Yarn, NPM, or a CDN to install the importer.
YARN
NPM
CDN
yarn add fuse-importer
To import the data importer, use:
import FuseImporter from "fuse-importer";
npm install fuse-importer --save
To import the importer, use:
import FuseImporter from "fuse-importer";
Make sure to place the script tag before you initialize the importer.
<script type="text/javascript" src="https://unpkg.com/[email protected]"></script>
Last modified 1mo ago