Coder Social home page Coder Social logo

js-study-lv2's Introduction

js-study-lv2

목적

  • 프레임워크의 구조를 파악한다.
  • 프레임워크에 사용된 객체지향 패러다임을 이해한다.
  • MVVM에 대해 이해한다.

스터디 과정

들어가기 전에

Editor 혹은 IDE

  • VSCode
    • 대부분의 프론트엔드 개발자가 사용하는 무료 에디터
    • 장점
      • 강력한 플러그인 지원
      • 직관적인 UI
      • 빠름
    • 단점
      • 설치 직후 다운 받아야 하는 것들이 너무 많음
      • 즉, 커스텀이 힘듦
  • Intellij
    • 대부분의 개발자가 사용하는 유료 IDE
    • 장점
      • 학생 이메일이 있을 경우 무료로 Ultimate 사용 가능
      • 필요한 모든 기능이 탑재되어 있음
    • 단점
      • 기본적으로 기능이 너무 많아서 헷갈림
      • 고사양 PC가 아닐 경우 버벅임

git

git 명령어에 대해 이해해야 합니다.

git 명령어 요약

git 설치가 완료되었다면

  • mac의 경우 terminal을 열어서 git을 입력하여 설치 되었음을 확인
  • window의 경우 폴더 혹은 바탕화면에서 마우스 우클릭으로 git bash 존재 여부 확인
########## 설치한 직후에 email, name 설정 ##########
$ git config --global user.name "junilhwang"          # 본인의 github id 입력
$ git config --global user.email "[email protected]"  # 본인의 github email 입력
#################################################

# 프로젝트 코드 가져오기
$ git clone https://github.com/DKU-STUDY/js-study-lv1

# 프로젝트 폴더로 이동하기
$ cd js-study-lv

# 원격 저장소 존재 여부 확인
$ git remote  
> origin # origin은 `https://github.com/DKU-STUDY/js-study-lv1`의 별칭으로 등록된 원격 저장소

# 테스트 파일 추가 
$ echo "테스트 파일 추가" > test.txt

# git 파일 추가 
$ git add test.txt

# 파일에 대한 커밋 로그 작성
$ git commit -m "테스트 파일 추가"

# 커밋 로그를 원격 저장소에 업로드
$ git push origin main

# 위의 명령어는 다음 명령어와 똑같음
$ git push https://github.com/DKU-STUDY/js-study-lv1 main
  • 잘 이해가 되지 않을 경우 디스코드 채널에 질문 남겨주세요!

Github

  • Github Pull Request에 대해 이해해야 합니다.
  • 동영상을 보면서 튜토리얼을 진행해주세요.

Reference

js-study-lv2's People

Contributors

junilhwang avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.