🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

nuvo-react

Package Overview
Dependencies
Maintainers
1
Versions
144
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nuvo-react

<!-- markdownlint-disable -->

2.16.4
latest
npm
Version published
Weekly downloads
6.5K
-18.58%
Maintainers
1
Weekly downloads
 
Created
Source

nuvo logo

nuvo-react

npm latest package API status

nuvo uses AI to enable you to import messy files with ease.

Use the UI library in our nuvo-react package to create the best data import experience for your customers!

Getting started

Make sure you have signed up for nuvo, and that you have access to your Licence Key.

Installation

Add nuvo to your app:

npm:

npm install nuvo-react

yarn:

yarn add nuvo-react

Implementation Example

import * as React from 'react';
import { NuvoImporter } from 'nuvo-react';

function App() {
  return (
    <NuvoImporter
      licenseKey="Your License Key"
      settings={{
        identifier: 'product_data',
        columns: [
          {
            label: 'Product ID',
            key: 'product_id',
          },
          {
            label: 'Article Name',
            key: 'article_name',
          },
        ],
      }}
      onResults={(result, identifier, complete, logs) => {
        console.log('Result:', result);
        complete();
      }}
    >
      Select File
    </NuvoImporter>
  );
}

In the interactive demo below, try changing the code and see how it affects the output.

For more options, see our documentation and visit our Knowledge base to see more code examples.

Edit Button

FAQs

Package last updated on 28 Mar 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts