This is a Papa Parse wrapper library for Angular.
More information in the full documentation.
You can install the library with npm.
npm install ngx-papaparse@8 --save
For older versions of Angular, please see the docs for the correct version.
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.