티스토리 뷰

9. 데브옵스

[인텔리제이] 부트 + 리액트 / 원프로젝트

패스트코드블로그 2020. 6. 16. 21:29

인텔리제이 File > Setting > Plugins 들어간 후 node 검색.. 아래처럼 installed 확인

 

 

 

npm install -g create-react-app

create-react-app frontend

 

cd frontend

npm start 

 

또는 

 

yarn 설치 후 start 하기

 

npm install -g yarn

yarn start

 

 

 

index.js 를 열면 아래 소스가 보입니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import * as serviceWorker from './serviceWorker';
 
ReactDOM.render(
  <React.StrictMode>
    <App />
  </React.StrictMode>,
  document.getElementById('root')
);
 
// If you want your app to work offline and load faster, you can change
// unregister() to register() below. Note this comes with some pitfalls.
// Learn more about service workers: https://bit.ly/CRA-PWA
serviceWorker.unregister();
 
cs

위 소스를 아래로 바꿉니다.

1
2
3
4
5
6
7
8
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
 
 
var elem = React.createElement('h1', { className : 'greeting'}, 'Hello, World !');
ReactDOM.render(elem, document.getElementById('root'));
 
cs

Hello, World 부터 시작합니다

 

댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
글 보관함