{"id":13412603,"url":"https://github.com/alberthaff/ngx-papaparse","last_synced_at":"2025-04-06T01:11:33.986Z","repository":{"id":22507024,"uuid":"96551273","full_name":"alberthaff/ngx-papaparse","owner":"alberthaff","description":"Papa Parse wrapper for Angular","archived":false,"fork":false,"pushed_at":"2023-08-21T05:48:08.000Z","size":4359,"stargazers_count":90,"open_issues_count":5,"forks_count":19,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-10-29T23:13:31.128Z","etag":null,"topics":["angular","angular4","converts","csv","csv-parser","multithreading","ngx-papapa","ngx-papaparse","papaparse","workers"],"latest_commit_sha":null,"homepage":"https://alberthaff.dk/projects/ngx-papaparse/docs/v8","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alberthaff.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-07-07T15:21:50.000Z","updated_at":"2024-08-23T08:04:04.000Z","dependencies_parsed_at":"2024-05-15T16:03:18.615Z","dependency_job_id":"b2789414-b4f2-45f5-8989-d6cba78c6ff7","html_url":"https://github.com/alberthaff/ngx-papaparse","commit_stats":{"total_commits":138,"total_committers":13,"mean_commits":"10.615384615384615","dds":0.2681159420289855,"last_synced_commit":"a5ebc99a1edcf6c2fd3e3b886cc5f8f53cbd25c1"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alberthaff%2Fngx-papaparse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alberthaff%2Fngx-papaparse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alberthaff%2Fngx-papaparse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alberthaff%2Fngx-papaparse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alberthaff","download_url":"https://codeload.github.com/alberthaff/ngx-papaparse/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247419872,"owners_count":20936013,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angular","angular4","converts","csv","csv-parser","multithreading","ngx-papapa","ngx-papaparse","papaparse","workers"],"created_at":"2024-07-30T20:01:26.672Z","updated_at":"2025-04-06T01:11:33.967Z","avatar_url":"https://github.com/alberthaff.png","language":"TypeScript","funding_links":[],"categories":["TypeScript","Table of contents"],"sub_categories":["Angular"],"readme":"![Logo](https://raw.githubusercontent.com/alberthaff/ngx-papaparse/master/assets/ngx-papaparse.svg?sanitize=true)\n\n# Papa Parse wrapper for Angular\n\n[![Version](https://img.shields.io/npm/v/ngx-papaparse.svg?style=flat-square)](https://www.npmjs.com/package/ngx-papaparse)\n[![Travis](https://img.shields.io/travis/alberthaff/ngx-papaparse/master.svg?style=flat-square)](https://travis-ci.org/alberthaff/ngx-papaparse)\n[![Coveralls github](https://img.shields.io/coveralls/github/alberthaff/ngx-papaparse.svg?style=flat-square)](https://coveralls.io/github/alberthaff/ngx-papaparse)\n[![License](https://img.shields.io/npm/l/ngx-papaparse.svg?style=flat-square)](https://github.com/alberthaff/ngx-papaparse/blob/master/LICENSE.md)\n[![NPM downloads](https://img.shields.io/npm/dt/ngx-papaparse.svg?style=flat-square)](https://www.npmjs.com/package/ngx-papaparse)\n[![GitHub stars](https://img.shields.io/github/stars/alberthaff/ngx-papaparse.svg?label=Stars\u0026style=flat-square)](https://github.com/alberthaff/ngx-papaparse)\n\nThis is a [Papa Parse](https://github.com/mholt/PapaParse) wrapper library for Angular.\n\n\u003ci\u003eMore information in the [full documentation](https://alberthaff.dk/projects/ngx-papaparse/docs/v7).\u003c/i\u003e\n\n## Installation\nYou can install the library with [npm](https://npmjs.com).\n\n### Angular 16+\n\n    npm install ngx-papaparse@8 --save\n    \n[Documentation](https://alberthaff.dk/projects/ngx-papaparse/docs/v7)\n\n\n### Older versions of Angular\n\nFor older versions of Angular, please see the docs for the correct version.\n\n## Getting started\n\nUse the Papa Service in your project:\n\n```typescript\nimport { Component } from '@angular/core';\nimport { Papa } from 'ngx-papaparse';\n\n@Component({\n  ...\n})\nexport class AppComponent {\n\n    constructor(private papa: Papa) {\n        const csvData = '\"Hello\",\"World!\"';\n        \n        this.papa.parse(csvData,{\n            complete: (result) =\u003e {\n                console.log('Parsed: ', result);\n            }\n        });\n    }\n}\n``` \n\n\nFor a more detailed explanation of how to use this library, please refer to the [full documentation](https://alberthaff.dk/projects/ngx-papaparse/docs/v7). \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falberthaff%2Fngx-papaparse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falberthaff%2Fngx-papaparse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falberthaff%2Fngx-papaparse/lists"}