From b34da2ca42d4f5a231f9fa16b5311b289835d88c Mon Sep 17 00:00:00 2001 From: CHC <40432044+achinchen@users.noreply.github.com> Date: Tue, 20 Jun 2023 02:10:59 +0800 Subject: [PATCH] fix(docs): update url for fastify (#17669) --- docs/shared/recipes/deployment/node-server-fly-io.md | 2 +- packages/create-nx-workspace/bin/create-nx-workspace.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/shared/recipes/deployment/node-server-fly-io.md b/docs/shared/recipes/deployment/node-server-fly-io.md index 0431b4987c..e428be140d 100644 --- a/docs/shared/recipes/deployment/node-server-fly-io.md +++ b/docs/shared/recipes/deployment/node-server-fly-io.md @@ -11,7 +11,7 @@ npx create-nx-workspace@latest my-api \ --docker ``` -This example uses [Fastify](https://www.fastify.io/) but you can equally use [Express](https://expressjs.com/), [Koa](https://koajs.com/) or [NestJS](https://nestjs.com/) by selecting those frameworks during project creation. +This example uses [Fastify](https://www.fastify.dev/) but you can equally use [Express](https://expressjs.com/), [Koa](https://koajs.com/) or [NestJS](https://nestjs.com/) by selecting those frameworks during project creation. You can also install the `@nx/node` package into an existing Nx monorepo and generate a new Node application. diff --git a/packages/create-nx-workspace/bin/create-nx-workspace.ts b/packages/create-nx-workspace/bin/create-nx-workspace.ts index a19c0f22ac..8aeaa4c098 100644 --- a/packages/create-nx-workspace/bin/create-nx-workspace.ts +++ b/packages/create-nx-workspace/bin/create-nx-workspace.ts @@ -939,7 +939,7 @@ async function determineNodeFramework( }, { name: 'fastify', - message: 'Fastify [ https://www.fastify.io/ ]', + message: 'Fastify [ https://www.fastify.dev/ ]', }, { name: 'koa',