All Projects → DKU-STUDY → js-study-lv1

DKU-STUDY / js-study-lv1

Licence: other
단국대학교 자바스크립트 스터디 레벨 1 과정을 위한 저장소

Programming Languages

HTML
75241 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to js-study-lv1

Jkanban
Vanilla Javascript plugin for manage kanban boards
Stars: ✭ 664 (+3588.89%)
Mutual labels:  vanilla-js, todolist
NNet
algorithm for study: multi-layer-perceptron, cluster-graph, cnn, rnn, restricted boltzmann machine, bayesian network
Stars: ✭ 24 (+33.33%)
Mutual labels:  study
Live Video Study Notes
📺 整理前端视频直播相关技术的笔记,适合想入门前端流媒体技术的人阅读
Stars: ✭ 192 (+966.67%)
Mutual labels:  study
bluerobin
a simple task manager
Stars: ✭ 27 (+50%)
Mutual labels:  todolist
My Notes
📝 Just a repo with my study notes. A simple notebook
Stars: ✭ 196 (+988.89%)
Mutual labels:  study
AlgoSSAFY
삼성 청년 SW 아카데미 4기 서울 알고리즘 스터디 🔥🧑‍💻🔥
Stars: ✭ 14 (-22.22%)
Mutual labels:  study
Tamburetei
Fazendo de tamburete as cadeiras de [email protected]
Stars: ✭ 177 (+883.33%)
Mutual labels:  study
TodoList
Simple todo-list app built with asp.net core mvc
Stars: ✭ 102 (+466.67%)
Mutual labels:  todolist
call user func
A benchmark study of call_user_func()
Stars: ✭ 19 (+5.56%)
Mutual labels:  study
js-plugin-starter-kit
VanillaJS (pure JavaScript) plugin starter with Webpack 4 and Babel 7.
Stars: ✭ 100 (+455.56%)
Mutual labels:  vanilla-js
Demo Laravel Zhihu Over
laravel study
Stars: ✭ 244 (+1255.56%)
Mutual labels:  study
Vocabhunter
VocabHunter helps learners of foreign languages find vital new vocabulary to study.
Stars: ✭ 201 (+1016.67%)
Mutual labels:  study
cmil
CMIL - Clarified Multilingual Intermediate Language
Stars: ✭ 32 (+77.78%)
Mutual labels:  study
Websites And Tools
🔰 分类收藏一些网站、工具和软件,记录一些关于 windows/macOS/linux 系统的使用技巧和软件操作。
Stars: ✭ 196 (+988.89%)
Mutual labels:  study
curved-menu
VanillaJS fully configurable curved menu (circular navigation)
Stars: ✭ 30 (+66.67%)
Mutual labels:  vanilla-js
Virgilio
Virgilio is developed and maintained by these awesome people. You can email us virgilio.datascience (at) gmail.com or join the Discord chat.
Stars: ✭ 13,200 (+73233.33%)
Mutual labels:  study
Mindforger Repository
MindForger documentation repository.
Stars: ✭ 221 (+1127.78%)
Mutual labels:  study
todo list rust
Simple Ncurses Todo List ☑
Stars: ✭ 19 (+5.56%)
Mutual labels:  todolist
http client
A http client written in C and pure socket, for understanding HTTP protocol. 用于理解 http 协议的 http 客户端
Stars: ✭ 27 (+50%)
Mutual labels:  study
malware api class
Malware dataset for security researchers, data scientists. Public malware dataset generated by Cuckoo Sandbox based on Windows OS API calls analysis for cyber security researchers
Stars: ✭ 134 (+644.44%)
Mutual labels:  study

js-study-lv1

목적

  1. javascript에 대해 이해하기
  2. 웹 브라우저에 대해 이해하기
  3. 웹 서버에 대해 이해하기
  4. 배포하기

스터디 과정

들어가기 전에

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에 대해 이해해야 합니다.
  • 동영상을 보면서 튜토리얼을 진행해주세요.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].