https://github.com/alberthaff/ngx-papaparse
Papa Parse wrapper for Angular
https://github.com/alberthaff/ngx-papaparse
angular angular4 converts csv csv-parser multithreading ngx-papapa ngx-papaparse papaparse workers
Last synced: 22 days ago
JSON representation
Papa Parse wrapper for Angular
- Host: GitHub
- URL: https://github.com/alberthaff/ngx-papaparse
- Owner: alberthaff
- License: mit
- Created: 2017-07-07T15:21:50.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-08-21T05:48:08.000Z (over 1 year ago)
- Last Synced: 2024-10-29T23:13:31.128Z (6 months ago)
- Topics: angular, angular4, converts, csv, csv-parser, multithreading, ngx-papapa, ngx-papaparse, papaparse, workers
- Language: TypeScript
- Homepage: https://alberthaff.dk/projects/ngx-papaparse/docs/v8
- Size: 4.16 MB
- Stars: 90
- Watchers: 4
- Forks: 19
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-angular - ngx-papaparse - [Papa Parse](https://www.papaparse.com) wrapper. (Table of contents / Angular)
- fucking-awesome-angular - ngx-papaparse - 🌎 [Papa Parse](www.papaparse.com) wrapper. (Table of contents / Angular)
- fucking-awesome-angular - ngx-papaparse - 🌎 [Papa Parse](www.papaparse.com) wrapper. (Table of contents / Angular)
README

# Papa Parse wrapper for Angular
[](https://www.npmjs.com/package/ngx-papaparse)
[](https://travis-ci.org/alberthaff/ngx-papaparse)
[](https://coveralls.io/github/alberthaff/ngx-papaparse)
[](https://github.com/alberthaff/ngx-papaparse/blob/master/LICENSE.md)
[](https://www.npmjs.com/package/ngx-papaparse)
[](https://github.com/alberthaff/ngx-papaparse)This is a [Papa Parse](https://github.com/mholt/PapaParse) wrapper library for Angular.
More information in the [full documentation](https://alberthaff.dk/projects/ngx-papaparse/docs/v7).
## Installation
You can install the library with [npm](https://npmjs.com).### Angular 16+
npm install ngx-papaparse@8 --save
[Documentation](https://alberthaff.dk/projects/ngx-papaparse/docs/v7)### 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:
```typescript
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](https://alberthaff.dk/projects/ngx-papaparse/docs/v7).