{"id":26862133,"url":"https://github.com/soroushj/node-minimal-csv-formatter","last_synced_at":"2025-09-08T15:35:02.970Z","repository":{"id":26674245,"uuid":"109504475","full_name":"soroushj/node-minimal-csv-formatter","owner":"soroushj","description":"Transform arrays into CSV strings.","archived":false,"fork":false,"pushed_at":"2023-10-18T01:11:36.000Z","size":284,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-09T10:53:49.579Z","etag":null,"topics":["csv","csv-string","nodejs","npm-package"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/minimal-csv-formatter","language":"JavaScript","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/soroushj.png","metadata":{"files":{"readme":"README.md","changelog":null,"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-11-04T15:03:50.000Z","updated_at":"2023-03-05T08:23:17.000Z","dependencies_parsed_at":"2024-09-30T17:01:10.770Z","dependency_job_id":"2f0825e4-abf2-4d91-bd06-b288b09635f2","html_url":"https://github.com/soroushj/node-minimal-csv-formatter","commit_stats":null,"previous_names":[],"tags_count":18,"template":false,"template_full_name":null,"purl":"pkg:github/soroushj/node-minimal-csv-formatter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soroushj%2Fnode-minimal-csv-formatter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soroushj%2Fnode-minimal-csv-formatter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soroushj%2Fnode-minimal-csv-formatter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soroushj%2Fnode-minimal-csv-formatter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/soroushj","download_url":"https://codeload.github.com/soroushj/node-minimal-csv-formatter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soroushj%2Fnode-minimal-csv-formatter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271680370,"owners_count":24802074,"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","status":"online","status_checked_at":"2025-08-22T02:00:08.480Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["csv","csv-string","nodejs","npm-package"],"created_at":"2025-03-31T02:23:43.781Z","updated_at":"2025-08-22T18:14:40.026Z","avatar_url":"https://github.com/soroushj.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Minimal CSV Formatter\n\n[![Build Status](https://travis-ci.org/soroushj/node-minimal-csv-formatter.svg?branch=master)](https://travis-ci.org/soroushj/node-minimal-csv-formatter)\n[![codecov](https://codecov.io/gh/soroushj/node-minimal-csv-formatter/branch/master/graph/badge.svg)](https://codecov.io/gh/soroushj/node-minimal-csv-formatter)\n[![npm version](https://badge.fury.io/js/minimal-csv-formatter.svg)](https://badge.fury.io/js/minimal-csv-formatter)\n\nTransforms arrays into equivalent CSV strings. Conforms to [RFC 4180](https://tools.ietf.org/html/rfc4180), with the exception that, instead of `CRLF`, `LF` is used as line delimiter.\n\n## Usage\n\n```javascript\nconst csv = require('minimal-csv-formatter');\n\nlet singleRow = csv(['x', 'y']);\n// 'x,y\\n'\n\nlet multipleRows = csv([\n  [1, 2],\n  [3, 4],\n]);\n// '1,2\\n3,4\\n'\n\nlet emptyFields = csv([null, undefined]);\n// ',\\n'\n\nlet emptyRows = csv([\n  [],\n  null,\n  undefined,\n]);\n// ''\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoroushj%2Fnode-minimal-csv-formatter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsoroushj%2Fnode-minimal-csv-formatter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoroushj%2Fnode-minimal-csv-formatter/lists"}