npx create-react-app <ํ๋ก์ ํธ_์ด๋ฆ>
๐กnpx๋?
npm package runner ์ด๋ค.
npm install create-react-app -g
creat-react-app <ํ๋ก์ ํธ_์ด๋ฆ>
๋๊ฐ์ง ๋ชจ๋ ์ฌ์ฉ๊ฐ๋ฅํ๋ค.
npm run start
localhost:3000 ์ ๋ฆฌ์กํธ ์น ์ฌ์ดํธ๊ฐ ๊ตฌ๋๋๋๊ฒ์ ํ์ธํ ์ ์๋ค.
App.js
import logo from './logo.svg';
import './App.css';
function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Hello World
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
);
}
export default App;
Hello World๊ฐ ์ ๋ณด์ธ๋ค!