https://github.com/fastify/skeleton
Template repository to create standardized Fastify plugins.
https://github.com/fastify/skeleton
fastify fastify-plugin
Last synced: 3 months ago
JSON representation
Template repository to create standardized Fastify plugins.
- Host: GitHub
- URL: https://github.com/fastify/skeleton
- Owner: fastify
- Created: 2020-09-21T13:19:35.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-01T04:07:32.000Z (10 months ago)
- Last Synced: 2024-09-28T11:21:00.027Z (8 months ago)
- Topics: fastify, fastify-plugin
- Homepage:
- Size: 40 KB
- Stars: 33
- Watchers: 18
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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](https://github.com/apps/stale) to mark issues as stale.
5. Template for the GitHub App [tests-checker](https://github.com/apps/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
```