Skip to content

Commit

Permalink
docs(readme): remove www. from fastify.dev` urls
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs committed Jan 14, 2024
1 parent 5ab30e5 commit 4681092
Show file tree
Hide file tree
Showing 12 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion templates/app-esm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ Run the test cases.

## Learn More

To learn Fastify, check out the [Fastify documentation](https://www.fastify.dev/docs/latest/).
To learn Fastify, check out the [Fastify documentation](https://fastify.dev/docs/latest/).
6 changes: 3 additions & 3 deletions templates/app-esm/plugins/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ that will then be used in the rest of your application.

Check out:

* [The hitchhiker's guide to plugins](https://www.fastify.dev/docs/latest/Guides/Plugins-Guide/)
* [Fastify decorators](https://www.fastify.dev/docs/latest/Reference/Decorators/).
* [Fastify lifecycle](https://www.fastify.dev/docs/latest/Reference/Lifecycle/).
* [The hitchhiker's guide to plugins](https://fastify.dev/docs/latest/Guides/Plugins-Guide/)
* [Fastify decorators](https://fastify.dev/docs/latest/Reference/Decorators/).
* [Fastify lifecycle](https://fastify.dev/docs/latest/Reference/Lifecycle/).
6 changes: 3 additions & 3 deletions templates/app-esm/routes/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 routes that define the endpoints
of your web application.
Each service is a [Fastify
plugin](https://www.fastify.dev/docs/latest/Reference/Plugins/), it is
plugin](https://fastify.dev/docs/latest/Reference/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,7 +21,7 @@ and eventually extract them.

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

If you're a bit confused about using `async/await` to write routes, you would
better take a look at [Promise resolution](https://www.fastify.dev/docs/latest/Reference/Routes/#promise-resolution) for more details.
better take a look at [Promise resolution](https://fastify.dev/docs/latest/Reference/Routes/#promise-resolution) for more details.
2 changes: 1 addition & 1 deletion templates/app-ts-esm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ Run the test cases.

## Learn More

To learn Fastify, check out the [Fastify documentation](https://www.fastify.dev/docs/latest/).
To learn Fastify, check out the [Fastify documentation](https://fastify.dev/docs/latest/).
6 changes: 3 additions & 3 deletions templates/app-ts-esm/src/plugins/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ that will then be used in the rest of your application.

Check out:

* [The hitchhiker's guide to plugins](https://www.fastify.dev/docs/latest/Guides/Plugins-Guide/)
* [Fastify decorators](https://www.fastify.dev/docs/latest/Reference/Decorators/).
* [Fastify lifecycle](https://www.fastify.dev/docs/latest/Reference/Lifecycle/).
* [The hitchhiker's guide to plugins](https://fastify.dev/docs/latest/Guides/Plugins-Guide/)
* [Fastify decorators](https://fastify.dev/docs/latest/Reference/Decorators/).
* [Fastify lifecycle](https://fastify.dev/docs/latest/Reference/Lifecycle/).
4 changes: 2 additions & 2 deletions templates/app-ts-esm/src/routes/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 routes that define the endpoints
of your web application.
Each service is a [Fastify
plugin](https://www.fastify.dev/docs/latest/Reference/Plugins/), it is
plugin](https://fastify.dev/docs/latest/Reference/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 routes, place that
functionality into the `plugins` folder, and share it via
[decorators](https://www.fastify.dev/docs/latest/Reference/Decorators/).
[decorators](https://fastify.dev/docs/latest/Reference/Decorators/).
2 changes: 1 addition & 1 deletion templates/app-ts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ Run the test cases.

## Learn More

To learn Fastify, check out the [Fastify documentation](https://www.fastify.dev/docs/latest/).
To learn Fastify, check out the [Fastify documentation](https://fastify.dev/docs/latest/).
6 changes: 3 additions & 3 deletions templates/app-ts/src/plugins/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ that will then be used in the rest of your application.

Check out:

* [The hitchhiker's guide to plugins](https://www.fastify.dev/docs/latest/Guides/Plugins-Guide/)
* [Fastify decorators](https://www.fastify.dev/docs/latest/Reference/Decorators/).
* [Fastify lifecycle](https://www.fastify.dev/docs/latest/Reference/Lifecycle/).
* [The hitchhiker's guide to plugins](https://fastify.dev/docs/latest/Guides/Plugins-Guide/)
* [Fastify decorators](https://fastify.dev/docs/latest/Reference/Decorators/).
* [Fastify lifecycle](https://fastify.dev/docs/latest/Reference/Lifecycle/).
4 changes: 2 additions & 2 deletions templates/app-ts/src/routes/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 routes that define the endpoints
of your web application.
Each service is a [Fastify
plugin](https://www.fastify.dev/docs/latest/Reference/Plugins/), it is
plugin](https://fastify.dev/docs/latest/Reference/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 routes, place that
functionality into the `plugins` folder, and share it via
[decorators](https://www.fastify.dev/docs/latest/Reference/Decorators/).
[decorators](https://fastify.dev/docs/latest/Reference/Decorators/).
2 changes: 1 addition & 1 deletion templates/app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ Run the test cases.

## Learn More

To learn Fastify, check out the [Fastify documentation](https://www.fastify.dev/docs/latest/).
To learn Fastify, check out the [Fastify documentation](https://fastify.dev/docs/latest/).
6 changes: 3 additions & 3 deletions templates/app/plugins/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ that will then be used in the rest of your application.

Check out:

* [The hitchhiker's guide to plugins](https://www.fastify.dev/docs/latest/Guides/Plugins-Guide/)
* [Fastify decorators](https://www.fastify.dev/docs/latest/Reference/Decorators/).
* [Fastify lifecycle](https://www.fastify.dev/docs/latest/Reference/Lifecycle/).
* [The hitchhiker's guide to plugins](https://fastify.dev/docs/latest/Guides/Plugins-Guide/)
* [Fastify decorators](https://fastify.dev/docs/latest/Reference/Decorators/).
* [Fastify lifecycle](https://fastify.dev/docs/latest/Reference/Lifecycle/).
6 changes: 3 additions & 3 deletions templates/app/routes/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 routes that define the endpoints
of your web application.
Each service is a [Fastify
plugin](https://www.fastify.dev/docs/latest/Reference/Plugins/), it is
plugin](https://fastify.dev/docs/latest/Reference/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,7 +21,7 @@ and eventually extract them.

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

If you're a bit confused about using `async/await` to write routes, you would
better take a look at [Promise resolution](https://www.fastify.dev/docs/latest/Reference/Routes/#promise-resolution) for more details.
better take a look at [Promise resolution](https://fastify.dev/docs/latest/Reference/Routes/#promise-resolution) for more details.

0 comments on commit 4681092

Please sign in to comment.