{"id":16529011,"url":"https://github.com/nielse63/typescript-repo-template","last_synced_at":"2026-02-14T08:02:01.259Z","repository":{"id":139180156,"uuid":"610601420","full_name":"nielse63/typescript-repo-template","owner":"nielse63","description":"A GitHub repo template for TypeScript projects","archived":false,"fork":false,"pushed_at":"2026-02-03T07:25:16.000Z","size":1477,"stargazers_count":0,"open_issues_count":5,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-03T19:16:40.489Z","etag":null,"topics":["repo-template","template","typescript"],"latest_commit_sha":null,"homepage":"https://nielse63.github.io/typescript-repo-template/","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/nielse63.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-03-07T05:10:31.000Z","updated_at":"2026-02-03T06:11:51.000Z","dependencies_parsed_at":"2023-11-28T07:27:24.439Z","dependency_job_id":"e72a8eb0-696a-448e-9e72-2dfd0a07b47f","html_url":"https://github.com/nielse63/typescript-repo-template","commit_stats":null,"previous_names":[],"tags_count":1,"template":true,"template_full_name":null,"purl":"pkg:github/nielse63/typescript-repo-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nielse63%2Ftypescript-repo-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nielse63%2Ftypescript-repo-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nielse63%2Ftypescript-repo-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nielse63%2Ftypescript-repo-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nielse63","download_url":"https://codeload.github.com/nielse63/typescript-repo-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nielse63%2Ftypescript-repo-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29439821,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T07:24:13.446Z","status":"ssl_error","status_checked_at":"2026-02-14T07:23:58.969Z","response_time":53,"last_error":"SSL_read: 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":["repo-template","template","typescript"],"created_at":"2024-10-11T17:42:46.561Z","updated_at":"2026-02-14T08:02:01.250Z","avatar_url":"https://github.com/nielse63.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# typescript-repo-template\n\n\u003e A GitHub repo template for TypeScript projects\n\n\u003cdiv align=\"center\"\u003e\n  \u003cdiv\u003e\n    \u003cimg alt=\"GitHub Workflow Status\" src=\"https://img.shields.io/github/actions/workflow/status/nielse63/typescript-repo-template/main.yml?style=for-the-badge\"\u003e\n    \u003cimg alt=\"Codecov\" src=\"https://img.shields.io/codecov/c/github/nielse63/typescript-repo-template?style=for-the-badge\"\u003e\n    \u003cimg alt=\"GitHub issues\" src=\"https://img.shields.io/github/issues-raw/nielse63/typescript-repo-template?style=for-the-badge\"\u003e\n    \u003cimg alt=\"GitHub\" src=\"https://img.shields.io/github/license/nielse63/typescript-repo-template?style=for-the-badge\"\u003e\n  \u003c/div\u003e\n\n  \u003ca href=\"https://github.com/nielse63/typescript-repo-template\"\u003e\n    \u003cimg src=\"./docs/typescript-repo-template.png\" alt=\"nielse63/typescript-repo-template\" width=\"640\" width=\"320\" /\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\n## Features\n\n- TypeScript - Pre-configured TypeScript configuration integrated with eslint and jest\n- GitHub Actions - PR checks, dependabot, automerge, and repo settings pre-configured\n- Git Hooks - Format staged files using lint-staged and husky\n- Pre-Configured Formatters - eslint, prettier, airbnb-typescript-config, and .editorconfig baked in\n- Unit Tests - Run TypeScript unit tests with jest\n- Interactive Setup Script - takes the hassle out of initializing your repository\n\n### Prerequisites\n\nFor the best results, make sure you have the correct version of node installed:\n\n```bash\nnvm install v22.21.0\n```\n\n### Installation\n\n#### Using GitHub CLI\n\n```bash\n# create the repo and clone it\ngh repo create my-awesome-project \\\n  --template nielse63/typescript-repo-template \\\n  --clone\ncd my-awesome-project\n\n# run the setup script\nnpm run setup\n```\n\n#### Manually via git\n\n```bash\n# clone the repo into a custom directory\ngit clone https://github.com/nielse63/typescript-repo-template my-awesome-project\ncd my-awesome-project\n\n# run the setup script\nnpm run setup\n```\n\n## Usage\n\n### NPM Scrtips\n\n| script          | desription                       |\n| --------------- | -------------------------------- |\n| `npm test`      | run unit tests with jest         |\n| `npm start`     | execute the module from `./dist` |\n| `npm run dev`   | execute the module from `./src`  |\n| `npm run lint`  | format and lint files            |\n| `npm run build` | compile source to `./dist`       |\n| `npm run docs`  | build API docs                   |\n\n## Roadmap\n\n- [x] Add Changelog\n- [x] Add default values for setup script\n- [ ] Move `.bin/scripts` to it's own package\n- [ ] Utilize plop\n- [ ] Write tests for setup and backup scripts\n\nSee the [open issues](https://github.com/nielse63/typescript-repo-template/issues) for a full list of proposed features (and known issues).\n\n## Contributing\n\nContributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.\n\nIf you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag \"enhancement\". Don't forget to give the project a star! Thanks again!\n\n1. Fork the Project\n2. Create your Feature Branch (`git checkout -b scratch/my-feature`)\n3. Commit your Changes (`git commit -m 'added new feature'`)\n4. Push to the Branch (`git push origin scratch/my-feature`)\n5. Open a Pull Request\n\n## License\n\nDistributed under the MIT License. See [`LICENSE`](https://github.com/nielse63/typescript-repo-template/blob/main/LICENSE) for more information.\n\n## Contact\n\nProject Link: [https://github.com/nielse63/typescript-repo-template](https://github.com/nielse63/typescript-repo-template)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnielse63%2Ftypescript-repo-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnielse63%2Ftypescript-repo-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnielse63%2Ftypescript-repo-template/lists"}