Skip to content

Commit 1838775

Browse files
committed
Rename "Build a Framework" to "Web App Architecture"
1 parent ab3fbb1 commit 1838775

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/content/blog/2025/02/14/sunsetting-create-react-app.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ February 14, 2025 by [Matt Carroll](https://twitter.com/mattcarrollcode) and [Ri
1111

1212
<Intro>
1313

14-
Today, we’re deprecating [Create React App](https://create-react-app.dev/) for new apps, and encouraging existing apps to migrate to a [framework](/learn/creating-a-react-app). We’re also providing docs for when a framework isn’t a good fit for your project, or you prefer to start by [building a framework](/learn/building-a-react-framework).
14+
Today, we’re deprecating [Create React App](https://create-react-app.dev/) for new apps, and encouraging existing apps to migrate to a [framework](/learn/creating-a-react-app#recommended-react-frameworks). We’re also providing docs for when a framework isn’t a good fit for your project, or you prefer to [start from scratch](/learn/creating-a-react-app#start-from-scratch).
1515

1616
</Intro>
1717

@@ -56,9 +56,9 @@ For existing apps, these guides will help you migrate to a client-only SPA:
5656

5757
Create React App will continue working in maintenance mode, and we've published a new version of Create React App to work with React 19.
5858

59-
If your app has unusual constraints, or you prefer to solve these problems by building your own framework, or you just want to learn how react works from scratch, you can roll your own custom setup with React using Vite, Parcel or Rsbuild.
59+
If your app has unusual constraints, or you prefer to solve these problems by building your own framework, or you just want to learn how React works from scratch, you can roll your own custom setup with React using Vite, Parcel or Rsbuild.
6060

61-
To help users get started with Vite, Parcel or Rsbuild, we've published new docs for [Building a Framework](/learn/building-a-react-framework). Continue reading to learn more about the [limitations of Create React App](#limitations-of-create-react-app) and [why we recommend frameworks](#why-we-recommend-frameworks).
61+
To help users get started with Vite, Parcel or Rsbuild, we've published new docs for [Starting from Scratch](/learn/creating-a-react-app#start-from-scratch). Continue reading to learn more about the [limitations of Create React App](#limitations-of-create-react-app) and [why we recommend frameworks](#why-we-recommend-frameworks).
6262

6363
<Note>
6464

@@ -68,7 +68,7 @@ We provide several Vite-based recommendations.
6868

6969
React Router v7 is a Vite based framework which allows you to use Vite's fast development server and build tooling with a framework that provides routing and data fetching. Just like the other frameworks we recommend, you can build a SPA with React Router v7.
7070

71-
We also recommend using Vite when [adding React to an existing project](/learn/add-react-to-an-existing-project), or [building a framework](/learn/building-a-react-framework).
71+
We also recommend using Vite when [adding React to an existing project](/learn/add-react-to-an-existing-project), or [starting from scratch](/learn/creating-a-react-app#start-from-scratch).
7272

7373
Just like Svelte has Sveltekit, Vue has Nuxt, and Solid has SolidStart, React recommends using a framework that integrates with build tools like Vite for new projects.
7474

File renamed without changes.

src/sidebarLearn.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@
2828
"title": "Creating a React App",
2929
"path": "/learn/creating-a-react-app"
3030
},
31-
{
32-
"title": "Building a React Framework",
33-
"path": "/learn/building-a-react-framework"
34-
},
3531
{
3632
"title": "Add React to an Existing Project",
3733
"path": "/learn/add-react-to-an-existing-project"
34+
},
35+
{
36+
"title": "Web App Architectures",
37+
"path": "/learn/web-app-architectures"
3838
}
3939
]
4040
},

0 commit comments

Comments
 (0)