목차
node
: lts/erbium (v12.*)yarn
: 1.22.4 +
CentOS로 예시를 진행합니다.
nvm 설치 ( nodejs용 버전관리 시스템 )
wget -P /root/ --tries=10 --retry-connrefused --waitretry=60 --no-dns-cache --no-cache https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh bash /root/install.sh . /root/.nvm/nvm.sh
nodejs 설치
NODE_VERSION=erbium nvm install --lts=$NODE_VERSION nvm alias default lts/$NODE_VERSION nvm use default
nodejs 와 npm 버전 확인
node -v # v12.*.* npm -v # 6.*.*
yarn 설치
npm install -g yarn
루트 디렉토리에,
package.json
이 위치해 있습니다.yarn install
이후, 잠시 기다리면 설치가 완료됩니다.
루트 디렉토리에, package.json
이 위치해 있습니다.
yarn run mock
: rap2 의 모의 인터페이스를 사용합니다.yarn run dev
: 실제 인터페이스를 사용하려면config/config.yaml
를config/local_config.yaml
로 복사하고,server
의 값을 실제 주소로 대체합니다.yarn run build
: 패키지를 빌드하고 dist 디렉토리의 내용을 백엔드로 전달할 수 있습니다.
- Preparation before development
- Directory structure
- Develop a new resource page
- BaseList introduction
- BaseTabList introduction
- BaseDetail introduction
- BaseDetailInfo introduction
- BaseStore introduction
- FormAction introduction
- ModalAction introduction
- ConfirmAction introduction
- StepAction introduction
- FormItem introduction
- Action introduction
- Menu introduction
- Route introduction
- I18n introduction