{"id":16531362,"url":"https://github.com/marcbachmann/borderless-table","last_synced_at":"2025-04-04T20:42:41.633Z","repository":{"id":66338136,"uuid":"61155527","full_name":"marcbachmann/borderless-table","owner":"marcbachmann","description":null,"archived":false,"fork":false,"pushed_at":"2023-12-15T08:17:58.000Z","size":8,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-11T14:47:57.807Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/marcbachmann.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":"2016-06-14T21:02:02.000Z","updated_at":"2020-09-11T23:35:59.000Z","dependencies_parsed_at":"2023-12-15T09:38:58.450Z","dependency_job_id":null,"html_url":"https://github.com/marcbachmann/borderless-table","commit_stats":{"total_commits":6,"total_committers":2,"mean_commits":3.0,"dds":"0.16666666666666663","last_synced_commit":"b0254d7658de9b45c4e94235fa9e05fbcb3dfc44"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcbachmann%2Fborderless-table","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcbachmann%2Fborderless-table/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcbachmann%2Fborderless-table/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcbachmann%2Fborderless-table/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marcbachmann","download_url":"https://codeload.github.com/marcbachmann/borderless-table/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247249604,"owners_count":20908211,"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":[],"created_at":"2024-10-11T18:08:37.279Z","updated_at":"2025-04-04T20:42:41.617Z","avatar_url":"https://github.com/marcbachmann.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# borderless-table\n\nTakes a collection and outputs a borderless table in the terminal or browser console.\n\n# API\n\n```javascript\nvar table = require('borderless-table')\ntable(collection, [columns], [columnLabels], [stdout])\n```\n\n\n### Output keys that are contained in the first object\n```javascript\ntable([\n  {name: 'Tokyo', country: 'Japan'},\n  {name: 'New York', country: 'USA'},\n  {name: 'São Paulo', country: 'Brazil'},\n  {name: 'Zürich', country: 'Switzerland'},\n])\n\n// name       country    \n// ----------------------\n// Tokyo      Japan      \n// New York   USA        \n// São Paulo  Brazil     \n// Zürich     Switzerland\n```\n\n### Output specific properties\n```javascript\ntable([\n  {name: 'Tokyo', country: 'Japan'},\n], ['name'])\n\n// name     \n// ---------\n// Tokyo    \n```\n\n\n### Use a custom column label\n```\ntable([\n  {name: 'Tokyo', country: 'Japan'},\n], ['name'], ['City name'])\n\n// City name\n// ---------\n// Tokyo    \n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarcbachmann%2Fborderless-table","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarcbachmann%2Fborderless-table","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarcbachmann%2Fborderless-table/lists"}