https://reactjs.org/blog/2017/09/26/react-v16.0.html

'frontend > React' 카테고리의 다른 글

React - IE9 에서 돌리기( core-j, babel-polyfill )  (0) 2017.11.22
Reactjs create-react-app  (0) 2017.11.22




core-j ( https://github.com/zloirock/core-js )


설치

npm install core-js


- index.js

import "core-js/es6/map";

import "core-js/es6/set";






babel-polyfill ( https://babeljs.io/docs/usage/polyfill/ )


설치

npm install --save babel-polyfill


- index.js

import "raf/polyfill";


'frontend > React' 카테고리의 다른 글

React v16.0  (0) 2017.11.22
Reactjs create-react-app  (0) 2017.11.22


// 글로벌 설치

npm install -g create-react-app 


// hello 폴더로 생성

create-react-app hello


// hello 폴더로 이동

cd hello


// 테스트 서버 실행

npm start




// 빌드

npm run build



// 셋팅

npm run eject

'frontend > React' 카테고리의 다른 글

React v16.0  (0) 2017.11.22
React - IE9 에서 돌리기( core-j, babel-polyfill )  (0) 2017.11.22

+ Recent posts