Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Standalone es6 CSV data backend inspired by the recline backend and the daaql library

Notifications You must be signed in to change notification settings

NuCivic/csv-es6-data-backend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CSV Backend for es6

Fetch and query CSV data from url, file, or memory.

Quickstart

npm install csv-es6-data-backend

  import CSV from 'csv-es6-data-backend';

     CSV.fetch(dataset).then(data => {
        // data is formatted:
            {
              fields: ['field1', 'field2', ...],
              records: [{ field1: 'value'}, ...]
            }
     });

About

Standalone es6 CSV data backend inspired by the recline backend and the daaql library

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published