{"id":29207195,"url":"https://github.com/jhordyess/fastify-ts-starter","last_synced_at":"2026-04-04T22:32:24.543Z","repository":{"id":289119288,"uuid":"970139509","full_name":"jhordyess/fastify-ts-starter","owner":"jhordyess","description":"Starter project for using Fastify with TypeScript.","archived":false,"fork":false,"pushed_at":"2025-06-25T01:56:52.000Z","size":131,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-02T19:09:03.509Z","etag":null,"topics":["eslint","fastify","husky","pnpm","prettier","tsx","typescript"],"latest_commit_sha":null,"homepage":"","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/jhordyess.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,"zenodo":null}},"created_at":"2025-04-21T14:39:18.000Z","updated_at":"2025-06-25T01:56:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"dc1dbd00-2bde-476b-b7c1-a7711a32a940","html_url":"https://github.com/jhordyess/fastify-ts-starter","commit_stats":null,"previous_names":["jhordyess/fastify-typescript-starter","jhordyess/fastify-ts-starter"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/jhordyess/fastify-ts-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhordyess%2Ffastify-ts-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhordyess%2Ffastify-ts-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhordyess%2Ffastify-ts-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhordyess%2Ffastify-ts-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jhordyess","download_url":"https://codeload.github.com/jhordyess/fastify-ts-starter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhordyess%2Ffastify-ts-starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31416770,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T20:09:54.854Z","status":"ssl_error","status_checked_at":"2026-04-04T20:09:44.350Z","response_time":60,"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":["eslint","fastify","husky","pnpm","prettier","tsx","typescript"],"created_at":"2025-07-02T19:01:16.671Z","updated_at":"2026-04-04T22:32:24.529Z","avatar_url":"https://github.com/jhordyess.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Fastify TypeScript Starter\n\nThis is a starter project for building a backend application using Fastify, TypeScript and Webpack.\n\n## Features\n\n- **Fastify**: A fast and low-overhead web framework for Node.js. (v. 5)\n- **TypeScript**: Strongly typed JavaScript for better development experience. (v. 5)\n- **Webpack**: Module bundler for compiling and optimizing the code. (v. 5)\n- **ESLint**: Linting for maintaining code quality. (v. 9)\n- **Prettier**: Code formatting for consistent style. (v. 3)\n- **Husky**: Git hooks for enforcing pre-push checks. (v. 9)\n- **pnpm**: Package manager for managing dependencies. (v. 10)\n\n## Prerequisites\n\n1. Install [Node.js](https://nodejs.org/en/download) (LTS version recommended).\n2. Enable Corepack to use a stable version of pnpm:\n\n```sh\ncorepack enable pnpm\n```\n\n## Getting Started\n\n1. Clone the repository:\n\n```sh\ngit clone https://github.com/jhordyess/fastify-ts-starter.git\n```\n\n2. Navigate to the project folder:\n\n```sh\ncd fastify-ts-starter\n```\n\n3. Install dependencies:\n\n```sh\npnpm i\n```\n\n4. Start the development server:\n\n```sh\npnpm dev\n```\n\n5. Open your browser or API client and interact with the server running at [http://localhost:8080](http://localhost:8080).\n\n## Project Structure\n\n```md\nfastify-ts-starter/\n├── .gitignore              # List of files and directories to be ignored by version control.\n├── .prettierrc.json        # Prettier configuration file.\n├── eslint.config.js        # ESLint configuration file.\n├── package.json            # Project configuration and dependencies.\n├── pnpm-lock.yaml          # pnpm lock file for dependency versions.\n├── pnpm-workspace.yaml     # pnpm workspace configuration file.\n├── README.md               # Project documentation.\n├── tsconfig.json           # TypeScript configuration file.\n├── .husky/                 # Directory for Git hooks managed by Husky.\n│   ├── pre-push            # Pre-push hook to run linting and TypeScript checks.\n├── src/\n│   ├── index.ts            # Main entry point of the application.\n```\n\n## Commands\n\n### Start the development server\n\n```sh\npnpm dev\n```\n\n### Build the project for production\n\n```sh\npnpm build\n```\n\n### Build the project for production with linting\n\n```sh\npnpm build:lint\n```\n\n### Start the production server\n\n```sh\npnpm start\n```\n\n### Run TypeScript checks\n\n```sh\npnpm ts-check\n```\n\n### Lint the code\n\n```sh\npnpm lint\n```\n\n### Validate the project (lint + TypeScript checks)\n\n```sh\npnpm validate\n```\n\n### Format the code\n\n```sh\npnpm format\n```\n\n## Contributing\n\nContributions are welcome! If you find any issues or want to enhance the project, feel free to submit a pull request.\n\n---\n\nHappy coding!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjhordyess%2Ffastify-ts-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjhordyess%2Ffastify-ts-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjhordyess%2Ffastify-ts-starter/lists"}