ngx-papaparse
TypeScript icon, indicating that this package has built-in type declarations

8.0.0 • Public • Published

Logo

Papa Parse wrapper for Angular

Version Travis Coveralls github License NPM downloads GitHub stars

This is a Papa Parse wrapper library for Angular.

More information in the full documentation.

Installation

You can install the library with npm.

Angular 16+

npm install ngx-papaparse@8 --save

Documentation

Older versions of Angular

For older versions of Angular, please see the docs for the correct version.

Getting started

Use the Papa Service in your project:

import { Component } from '@angular/core';
import { Papa } from 'ngx-papaparse';

@Component({
  ...
})
export class AppComponent {

    constructor(private papa: Papa) {
        const csvData = '"Hello","World!"';
        
        this.papa.parse(csvData,{
            complete: (result) => {
                console.log('Parsed: ', result);
            }
        });
    }
}

For a more detailed explanation of how to use this library, please refer to the full documentation.

/ngx-papaparse/

    Package Sidebar

    Install

    npm i ngx-papaparse

    Weekly Downloads

    39,684

    Version

    8.0.0

    License

    MIT

    Unpacked Size

    47.2 kB

    Total Files

    26

    Last publish

    Collaborators

    • alberthaff