Skip to content
/ skeleton Public template

Template repository to create standardized Fastify plugins

Notifications You must be signed in to change notification settings

fastify/skeleton

Folders and files

NameName
Last commit message
Last commit date
Mar 31, 2025
Sep 21, 2020
Sep 21, 2020
Sep 21, 2020
Sep 21, 2020
Feb 15, 2024
Oct 5, 2023
Feb 4, 2024
Jul 22, 2022
Feb 15, 2024
Nov 3, 2024

Repository files navigation

skeleton

Template repository to create standardized Fastify plugins.

Getting started

  • Click on Use this template above to create a new repository based on this repository.

What's included?

  1. Github CI Actions for installing, testing your package.
  2. Github CI Actions to validate different package managers.
  3. Dependabot V2 config to automate dependency updates.
  4. Template for the GitHub App Stale to mark issues as stale.
  5. Template for the GitHub App tests-checker to check if a PR contains tests.

Repository structure

├── .github
│   ├── workflows
│   │   ├── ci.yml
│   │   └── package-manager-ci.yml
│   ├── .stale.yml
│   ├── dependabot.yml
│   └── tests_checker.yml
│
├── docs (Documentation)
│
├── examples (Code examples)
│
├── test (Application tests)
│
├── types (Typescript types)
│
└── README.md