React

Create React App(CRA) 대신 Vite, Next.js, Remix 사용

수알치 2025. 2. 15. 20:45

Create React App(CRA) 대신 Vite, Next.js, Remix 사용

 

CRA(create-react-app) 기능은 React 어플리케이션 구성 도구였지만 이제는 지원 중단되었습니다. 대신에 Next.js, Remix 또는 Vite 도구를 권장합니다.

 

https://create-react-app.dev/

 

Create React App is deprecated.

Create React App is deprecated. Please see react.dev for modern options.

create-react-app.dev

 

# Vite 전역 설치
npm install -g vite

# 프로젝트 만들기
vite create my-react-app --template react
cd my-react-app

# 서버 구동
npm run dev

 

[참고] https://frontdev.tistory.com/entry/React의-미래-Create-React-App-사용되지-않고-Vite를-사용하자

 

React의 미래: Create React App(CRA) 대신 Vite를 사용하자

최근 React 생태계에 몇 가지 중요한 변화가 있었습니다. Create React App 지원 중단, react.dev 출시, Next.js 및 Remix와 같은 대체 프레임워크의 인기 증가가 포함됩니다. Create React App 추천 X 우선 Create Reac

frontdev.tistory.com

 

 

https://react.dev/

 

React

React is the library for web and native user interfaces. Build user interfaces out of individual pieces called components written in JavaScript. React is designed to let you seamlessly combine components written by independent people, teams, and organizati

react.dev

 

https://nextjs.org/

 

Next.js by Vercel - The React Framework

Next.js by Vercel is the full-stack React framework for the web.

nextjs.org

# Next.js로 프로젝트 만들기
npx create-next-app@latest my-react-app
cd my-react-app

# 서버 구동
npm run dev

 

https://remix.run/

 

Remix - Build Better Websites

Remix is a full stack web framework that lets you focus on the user interface and work back through web standards to deliver a fast, slick, and resilient user experience. People are gonna love using your stuff.

remix.run

 

# Remix로 새 프로젝트 만들기
npx create-remix@latest my-react-app
cd my-react-app

# 서버 구동
npm run dev

 

반응형