Skip to content

VeryverySoHappy/jestSetting

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Frontend - Perset

npm init

  • npm init

    • 명령어
      • npm init
      • npm init -y

gitignore

  • gitignore

    • extension -> gitignore 검색 (가장 조회수 많은거 다운)
    • ctrl + shift + p -> add gitignore 검색
    • node 검색 -> 실행

nodemon

  • nodemon -npm install -D nodemon

        "scripts":{
            "start": "nodemon ./index.js"
        },

    -npm (run) start

babel

  • babel -npm i -D @babel/core @babel/preset-env @babel/cli @babel/node -만약 오류 발생시 npm -g install -D @babel/core @babel/preset-env @babel/cli @babel/node -루트 디렉터리에 babel.config.json 파일 생성

        {
            "presets": ["@babel/preset-env"]
        }
        "scripts": {
            "start": "nodemon --exac babel-node ./index.js"
        },
    • npm (run) start
  • ESlint

  • Prettier

  • Jest

  • Cypress

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%