Skip to content
This repository was archived by the owner on Jun 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions plugins/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ that will then be used in the rest of your application.
Check out:

* [The hitchhiker's guide to plugins](https://github.com/fastify/fastify/blob/master/docs/Plugins-Guide.md)
* [Fastify decorators](https://www.fastify.io/docs/latest/Decorators/).
* [Fastify lifecycle](https://www.fastify.io/docs/latest/Lifecycle/).
* [Fastify decorators](https://fastify.dev/docs/latest/Decorators/).
* [Fastify lifecycle](https://fastify.dev/docs/latest/Lifecycle/).
4 changes: 2 additions & 2 deletions services/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ to independently deploy some of those.
In this folder you should define all the services that define the routes
of your web application.
Each service is a [Fastify
plugin](https://www.fastify.io/docs/latest/Plugins/), it is
plugin](https://fastify.dev/docs/latest/Plugins/), it is
encapsulated (it can have its own independent plugins) and it is
typically stored in a file; be careful to group your routes logically,
e.g. all `/users` routes in a `users.js` file. We have added
Expand All @@ -21,4 +21,4 @@ and eventually extract them.

If you need to share functionality between services, place that
functionality into the `plugins` folder, and share it via
[decorators](https://www.fastify.io/docs/latest/Decorators/).
[decorators](https://fastify.dev/docs/latest/Decorators/).