{"id":16925340,"url":"https://github.com/jdevelop-io/template-node-bun","last_synced_at":"2026-04-15T14:02:21.294Z","repository":{"id":252229866,"uuid":"839797267","full_name":"jdevelop-io/template-node-bun","owner":"jdevelop-io","description":"Node.js project scaffolding tool designed to speed up the initial setup of Node.js applications. This repository provides a solid foundation for building scalable and maintainable Node.js projects, with built-in best practices and commonly used configurations.","archived":false,"fork":false,"pushed_at":"2024-08-09T11:37:08.000Z","size":348,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-16T16:37:13.001Z","etag":null,"topics":["boilerplate","commitlint","eslint","gitmoji","husky","jest","lint-staged","nodejs","prettier","starter-kit","starter-project","starter-template","template","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/jdevelop-io.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}},"created_at":"2024-08-08T10:45:40.000Z","updated_at":"2024-10-05T20:24:44.000Z","dependencies_parsed_at":null,"dependency_job_id":"10b3c331-f299-494f-a4f8-8def59455816","html_url":"https://github.com/jdevelop-io/template-node-bun","commit_stats":null,"previous_names":["jdevelop-io/template-node"],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jdevelop-io%2Ftemplate-node-bun","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jdevelop-io%2Ftemplate-node-bun/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jdevelop-io%2Ftemplate-node-bun/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jdevelop-io%2Ftemplate-node-bun/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jdevelop-io","download_url":"https://codeload.github.com/jdevelop-io/template-node-bun/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244720469,"owners_count":20498800,"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":["boilerplate","commitlint","eslint","gitmoji","husky","jest","lint-staged","nodejs","prettier","starter-kit","starter-project","starter-template","template","typescript"],"created_at":"2024-10-13T20:10:21.886Z","updated_at":"2026-04-15T14:02:16.271Z","avatar_url":"https://github.com/jdevelop-io.png","language":"TypeScript","readme":"# Template Node\n\n[![Build Workflow](https://github.com/jdevelop-io/template-node/actions/workflows/build.yml/badge.svg)](https://github.com/jdevelop-io/template-node/actions/workflows/build.yml)\n[![Tests Workflow](https://github.com/jdevelop-io/template-node/actions/workflows/tests.yml/badge.svg)](https://github.com/jdevelop-io/template-node/actions/workflows/tests.yml)\n[![License](https://img.shields.io/github/license/jdevelop-io/template-node)](/LICENSE)\n[![WakaTime](https://wakatime.com/badge/user/b5dd94a4-c0ea-4c12-9cb2-41f984e74fdc/project/e774c158-4cbd-4a4e-a265-1c08e6e84c3d.svg)](https://wakatime.com/badge/user/b5dd94a4-c0ea-4c12-9cb2-41f984e74fdc/project/e774c158-4cbd-4a4e-a265-1c08e6e84c3d)\n\n**Template Node** is a Node.js project scaffolding tool designed to speed up the initial setup of Node.js applications.\nThis repository provides a solid foundation for building scalable and maintainable Node.js projects, with built-in best practices and commonly used configurations.\n\n## Features\n\n- **TypeScript**: Use TypeScript for a better development experience and improved code quality.\n- **ESLint**: Lint your code with ESLint to maintain consistent coding standards.\n- **Prettier**: Format your code with Prettier to keep it clean and consistent.\n- **Jest**: Test your code with Jest to ensure its correctness and reliability.\n- **Husky**: Use Husky to run tasks on Git hooks and enforce code quality.\n- **Lint-Staged**: Run ESLint and Prettier on staged files to catch errors before committing.\n- **Commitlint**: Enforce conventional commit messages to keep your commit history clean and organized.\n- **GitHub Actions**: Use GitHub Actions for continuous integration and automated testing.\n\n## Getting Started\n\n### Prerequisites\n\nMake sure you have Node.js and Bun installed on your machine before running the project.\n\n- [Node.js](https://nodejs.org/) (v22.5.1 or later)\n- [Bun](https://bun.sh/) (v1.1.17 or later)\n\n### Installation\n\n1. Clone the repository:\n\n   ```bash\n   git clone --depth 1 https://github.com/jdevelop-io/template-node.git\n   cd template-node\n   ```\n\n2. Remove the `.git` directory to start with a clean git history:\n\n   ```bash\n   rm -rf .git\n   ```\n\n3. Initialize a new git repository:\n\n   ```bash\n   git init\n   ```\n\n4. Install the dependencies:\n   ```bash\n   bun install\n   ```\n\n### Scripts\n\n- `bun run build` : Build the project.\n- `bun run test` : Run the tests.\n- `bun run test:watch` : Run the tests in watch mode.\n- `bun run test:coverage` : Run the tests with coverage.\n- `bun run test:coverage:watch`: Run the tests with coverage in watch mode.\n- `bun run lint` : Lint the code and fix linting errors.\n- `bun run lint:check` : Check the code for linting errors.\n- `bun run format` : Format the code and fix formatting errors.\n- `bun run format:check` : Check the code for formatting errors.\n\n### Project Structure\n\n```plaintext\ntemplate-node\n├── .github\n│   ├── workflows\n│   │   ├── build.yml\n│   │   └── tests.yml\n├── node_modules\n├── coverage\n├── build\n├── src\n├── README.md\n├── LICENSE\n├── commitlint.config.mjs\n├── eslint.config.mjs\n├── jest.config.ts\n├── lint-staged.config.mjs\n├── prettier.config.mjs\n├── tsconfig.json\n├── bun.lockb\n└── package.json\n```\n\n### Contributing\n\nContributions are welcome! If you have any ideas, suggestions, or issues, feel free to open an issue or submit a pull request.\n\n### License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjdevelop-io%2Ftemplate-node-bun","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjdevelop-io%2Ftemplate-node-bun","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjdevelop-io%2Ftemplate-node-bun/lists"}