{"id":18398027,"url":"https://github.com/rmoralp/node-ts-boilerplate","last_synced_at":"2026-04-08T18:04:56.161Z","repository":{"id":60911643,"uuid":"546662553","full_name":"rmoralp/node-ts-boilerplate","owner":"rmoralp","description":"Minimalistic template to jump start a Node.js application in TypeScript.","archived":false,"fork":false,"pushed_at":"2022-10-06T13:40:10.000Z","size":95,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-01T08:41:48.488Z","etag":null,"topics":["boilerplate","esbuild","eslint","javascript","node-js","node-typescript","node-typescript-boilerplate","nodejs","prettier","project-template","starter-template","typescript","typescript-boilerplate"],"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/rmoralp.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}},"created_at":"2022-10-06T12:49:53.000Z","updated_at":"2023-05-08T12:53:06.000Z","dependencies_parsed_at":"2022-10-06T15:55:30.470Z","dependency_job_id":null,"html_url":"https://github.com/rmoralp/node-ts-boilerplate","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/rmoralp/node-ts-boilerplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rmoralp%2Fnode-ts-boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rmoralp%2Fnode-ts-boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rmoralp%2Fnode-ts-boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rmoralp%2Fnode-ts-boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rmoralp","download_url":"https://codeload.github.com/rmoralp/node-ts-boilerplate/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rmoralp%2Fnode-ts-boilerplate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31567260,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["boilerplate","esbuild","eslint","javascript","node-js","node-typescript","node-typescript-boilerplate","nodejs","prettier","project-template","starter-template","typescript","typescript-boilerplate"],"created_at":"2024-11-06T02:19:33.965Z","updated_at":"2026-04-08T18:04:56.108Z","avatar_url":"https://github.com/rmoralp.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Minimalistic node typescript boilerplate\n\n[![TypeScript version][ts-badge]][typescript-4-8]\n[![Node.js version][nodejs-badge]][nodejs]\n\n⚡️ Tools included and configured:\n\n- [TypeScript][typescript] [4.8][typescript-4-8]\n- [ESLint][eslint] with some initial rules recommendation\n- [Prettier][prettier] to enforce consistent code style\n- [Vitest][vitest] for testing\n- NPM [scripts](#available-scripts) for common operations\n- Example configuration for [GitHub Actions][gh-actions]\n\n\u003e Works out of the box for most [Node.js][nodejs] projects.\n\n## Getting Started\n\nThis project is intended to be used with the latest Active LTS release of [Node.js][nodejs].\n\n### Start new project\n\n#### Use as a repository template\n\nTo start, just click the **[Use template][template-action]** link or the green button.\n\n#### Clone repository\n\nTo clone the repository, use the following commands:\n\n```sh\ngit clone https://github.com/rmoralp/node-ts-boilerplate\ncd node-ts-boilerplate\nnpm install\n```\n\n## Available Scripts\n\n- `build` - Transpile TypeScript to ES6\n- `dev` - Interactive watch mode to automatically transpile source files\n- `lint` - Lint source files and tests\n- `lint:fix` - Lint source files and tests and fix issues\n- `phoenix` - Clean install dependencies\n- `prettier` - Reformat files\n- `start` - Run the built app\n- `test` - Run tests once\n- `test:watch` - Run tests but watch for changes and rerun when they change\n\n\n[gha-badge]: https://github.com/jsynowiec/node-typescript-boilerplate/actions/workflows/nodejs.yml/badge.svg\n[nodejs-badge]: https://img.shields.io/badge/Node.js-\u003e=%2016.13-blue.svg\n[ts-badge]: https://img.shields.io/badge/TypeScript-4.8-blue.svg\n\n[eslint]: https://github.com/eslint/eslint\n[gh-actions]: https://github.com/features/actions\n[gha-ci]: https://github.com/jsynowiec/node-typescript-boilerplate/actions/workflows/nodejs.yml\n[nodejs]: https://nodejs.org/dist/latest-v16.x/docs/api/\n[prettier]: https://prettier.io\n[typescript-4-8]: https://devblogs.microsoft.com/typescript/announcing-typescript-4-8/\n[typescript]: https://www.typescriptlang.org/\n[template-action]: https://github.com/rmoralp/node-ts-boilerplate/generate\n[vitest]: https://vitest.dev/","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frmoralp%2Fnode-ts-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frmoralp%2Fnode-ts-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frmoralp%2Fnode-ts-boilerplate/lists"}