SOITZ

새로운 Front-end 프로젝트 시작을 돕는 명령어

Published on

새로운 프로젝트 시작을 돕는 명령어 정리

vite 프로젝트

// yarn
yarn create vite

// npm
npm create vite@latest

Next.js 프로젝트

// yarn
yarn create next-app

// npx
npx create-next-app@latest

express 프로젝트

// express-generator 설치
npm i -g express-generator

// 프로젝트 생성
express 프로젝트명 --view=pug

create react app

npx create-react-app 프로젝트명