youngkyo0504 / isAvailable

주연테크 모니터 재고 알리미

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

typescript-bolierplate

clone을 하고나서 yarn과 npm 둘중 선호하는 것을 이용해서 install을 해줍니다.

yarn install  // yarn 일 경우
npm install   // npm 일 경우

Recommendations

  • IDE - vscode
  • node -v 16
  • src/main.ts -> default configuration

Explanation

1. Prettier

.prettierrc을 이용해서 prettier의 설정을 바꿀 수 있습니다.
기본적으로 많이 사용하는 것을 이용했습니다.

https://prettier.io/docs/en/index.html

2. Eslint

.eslintrc.js을 이용해서 eslint의 설정을 바꿀 수 있습니다.
airbnb를 사용했습니다. 기본적으로 리액트가 아닌 node에 초점을 두었습니다.

https://github.com/eslint/eslint

3. nodemon

nodemon.json을 통해서 nodemon의 설정을 바꿀 수 있습니다.
기본적으로 ts,json만 변화를 감지하도록 했습니다. https://github.com/remy/nodemon#nodemon

Usage

컴파일과 함께 실행

yarn start    //yarn 일 경우
npm run start // npm 일 경우

파일감지(nodemon)실행

yarn dev     // yarn 일 경우
npm run dev  // npm 일 경우

About

주연테크 모니터 재고 알리미


Languages

Language:TypeScript 74.3%Language:JavaScript 25.7%