포스코DX X 비트교육센터 6기 - ReactJS


Emaillist 실습


react-practices\emaillist\frontend> npm init -y



1.  설치
    1)  개발툴
        $ npm i -D webpack webpack-cli webpack-dev-server css-loader style-loader sass-loader node-sass babel-loader @babel/core @babel/preset-env @babel/preset-react case-sensitive-paths-webpack-plugin
    2)  라이브러리
        $ npm i react react-dom prop-types

2.  설정
    1)  webpack.config.js
    2)  babel.config.json

3.  스트립팅
    "scripts": {
        "debug": "npx webpack serve --config config/webpack.config.js --progress --mode development",
        "build": "npx webpack --config config/webpack.config.js --mode production"
    }

4.  테스트 서버 실행
    $ npm run debug