{"id":19671771,"url":"https://github.com/ressuman/csv-writer-project","last_synced_at":"2026-05-15T06:07:01.389Z","repository":{"id":249884431,"uuid":"832850305","full_name":"ressuman/CSV-Writer-Project","owner":"ressuman","description":"CSV Writer with TypeScript. This project demonstrates my implementation of a CSV writer using plain TypeScript and JavaScript, without relying on any frameworks.","archived":false,"fork":false,"pushed_at":"2024-07-23T21:17:10.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-10T03:42:39.208Z","etag":null,"topics":["data","javascript","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ressuman.png","metadata":{"files":{"readme":"ReadMe.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-07-23T21:07:44.000Z","updated_at":"2024-07-23T21:17:12.000Z","dependencies_parsed_at":"2024-07-24T00:40:03.489Z","dependency_job_id":null,"html_url":"https://github.com/ressuman/CSV-Writer-Project","commit_stats":null,"previous_names":["ressuman/csv-writer-project"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ressuman%2FCSV-Writer-Project","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ressuman%2FCSV-Writer-Project/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ressuman%2FCSV-Writer-Project/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ressuman%2FCSV-Writer-Project/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ressuman","download_url":"https://codeload.github.com/ressuman/CSV-Writer-Project/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240981560,"owners_count":19888346,"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":["data","javascript","typescript"],"created_at":"2024-11-11T17:09:42.567Z","updated_at":"2026-05-15T06:06:56.367Z","avatar_url":"https://github.com/ressuman.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"---\n\n# CSV Writer with TypeScript\n\nThis project demonstrates my implementation of a CSV writer using plain TypeScript and JavaScript, without relying on any frameworks.\n\n## Key Features\n\n- **TypeScript**: Ensures type safety and a better development experience.\n- **CSV Writing**: Creates and writes data to CSV files using native JavaScript methods.\n- **No Frameworks**: Built with plain TypeScript and JavaScript for simplicity and flexibility.\n\n## Getting Started\n\n### Prerequisites\n\nMake sure you have Node.js and npm installed on your machine.\n\n### Installation\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/yourusername/csv-writer-typescript.git\n   cd csv-writer-typescript\n   ```\n\n2. Install dependencies:\n   ```bash\n   npm install\n   ```\n\n### Building the Project\n\n1. Build the project:\n   ```bash\n   npm run build\n   ```\n\n### Running the CSV Writer\n\n1. Run the CSV writer script:\n   ```bash\n   node dist/index.js\n   ```\n\n## Usage\n\nThis project includes a simple CSV writer script that you can customize to suit your needs. Modify the `src/index.ts` file to add the data you want to write to the CSV file.\n\nExample `src/index.ts`:\n\n```typescript\nimport { writeFileSync } from \"fs\";\n\nconst data = [\n  [\"Name\", \"Age\", \"Email\"],\n  [\"John Doe\", \"30\", \"john.doe@example.com\"],\n  [\"Jane Smith\", \"25\", \"jane.smith@example.com\"],\n];\n\nconst csvContent = data.map((row) =\u003e row.join(\",\")).join(\"\\n\");\n\nwriteFileSync(\"output.csv\", csvContent);\n\nconsole.log(\"CSV file written successfully\");\n```\n\n## Contributing\n\nFeel free to fork this repository, make improvements, and submit pull requests. Contributions are always welcome!\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n---\n\nFeel free to explore and contribute!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fressuman%2Fcsv-writer-project","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fressuman%2Fcsv-writer-project","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fressuman%2Fcsv-writer-project/lists"}