{"id":25920093,"url":"https://github.com/lovethebomb/invoice","last_synced_at":"2026-05-08T14:47:15.618Z","repository":{"id":149202049,"uuid":"140073504","full_name":"lovethebomb/invoice","owner":"lovethebomb","description":"📄 Stupid simple invoice generator, because, why not.","archived":false,"fork":false,"pushed_at":"2019-02-11T20:44:22.000Z","size":88,"stargazers_count":3,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-22T15:47:46.064Z","etag":null,"topics":["generator","invoice","javascript","json","pug"],"latest_commit_sha":null,"homepage":"","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/lovethebomb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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,"zenodo":null}},"created_at":"2018-07-07T10:09:17.000Z","updated_at":"2020-12-25T10:55:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"e482f900-7910-4140-b156-51fba598a480","html_url":"https://github.com/lovethebomb/invoice","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lovethebomb/invoice","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lovethebomb%2Finvoice","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lovethebomb%2Finvoice/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lovethebomb%2Finvoice/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lovethebomb%2Finvoice/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lovethebomb","download_url":"https://codeload.github.com/lovethebomb/invoice/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lovethebomb%2Finvoice/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32785396,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"ssl_error","status_checked_at":"2026-05-08T08:22:45.650Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["generator","invoice","javascript","json","pug"],"created_at":"2025-03-03T15:18:49.465Z","updated_at":"2026-05-08T14:47:15.610Z","avatar_url":"https://github.com/lovethebomb.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# invoice\n\nSimple JSON-based, HTML invoice generator, with optional custom template.\n\n![Screenshot](/../github/.github/screenshot.png?raw=true \"Screenshot\")\n\n## Requirements\n\n* Node \u003e= 9 (async / await)\n\n## Usage\n\n### Configuration file\n\nFirst, you need to create a configuration file based on [config.js.dist][config].\n\nIt can be overriden by the configuration inside the json invoice.\n\n```bash\n{\n    \"company\": {\n        \"name\": \"My Company\",\n        \"email\": \"invoice@my-company.tld\",\n        \"address\": {\n            \"street\": \"Company Street Name\",\n            \"postcode\": \"Company Post Code\",\n            \"city\": \"Company City\",\n            \"country\": \"Company Country\"\n        },\n        \"vat\": \"123456789\",\n        \"coc\": \"123456789\",\n        \"iban\": \"123456789\",\n        \"swift\": \"CODE42CODE\"\n    },\n    \"payment_term\": \"30 days\",\n    \"tax\": {\n        \"rate\": 0.42\n    },\n    \"currency\": {\n        \"code\": \"EUR\",\n        \"text\": \"\u0026euro;\"\n    }\n}\n```\n\n### Invoice file\n\nCreate an invoice file based on [the sample invoice][invoice-sample]\n\n```bash\n{\n    \"id\": 10001,\n    \"issued_date\": \"2018-07-05\",\n    \"mode\": {\n        \"unit\": \"Hours\",\n        \"rate\": \"Hourly Rate\"\n    },\n    \"client\": {\n        \"id\": \"great-client\",\n        \"name\": \"Great Client Ltd\",\n        \"address\": {\n            \"street\": \"Client Street\",\n            \"postcode\": \"Client Post code\",\n            \"city\": \"Client City\",\n            \"country\": \"Client Country\"\n        },\n        \"vat\": \"CL123456789\",\n        \"coc\": {\n            \"name\": \"CoC\",\n            \"value\": \"123456789\"\n        }\n    },\n    \"tasks\": [\n        {\n            \"description\": \"A well executed task\",\n            \"rate\": 42,\n            \"quantity\": 5\n        }\n    ]\n}\n```\n\n\n### Commands\n\nCreate an HTML invoice.\n\n```bash\nnode index.js create --invoice invoices/sample.json\n\nor\n\n\n```\n\n## Development\n\n## Testing\n\n```bash\nnpm run test\n```\n\n## TODO\n\n[TODO][todo]\n\n## License\n\n[MIT][license]\n\n\n[config]: config.json.dist\n[invoice-sample]: invoices/10001.json\n[todo]: TODO.md\n[license]: LICENSE.md\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flovethebomb%2Finvoice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flovethebomb%2Finvoice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flovethebomb%2Finvoice/lists"}