일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- Mrs. GREEN APPLE
- Django
- Lisa
- OP
- ED
- Git
- 귀멸의 칼날
- 강철의 연금술사
- 소드 아트 온라인
- angular
- ASCA
- sid
- Yama
- wms
- ラックライフ
- 소드아트온라인
- アポトーシス
- THE ORAL CIGARETTES
- NICO Touches the Walls
- Official髭男dism
- Kisses and Kills
- 容姿端麗な嘘
- 文豪ストレイドッグス
- 나루토
- きみの名前
- 명령어
- Sword art online
- 드라마
- シド
- 藤川千愛
- Today
- Total
목록명령어 (4)
일본IT외노자생활
Angular 개념 정리 프로퍼티 바인딩 [] 사용 이벤트 바인딩 () 사용 (click)등 양뱡향 데이터 바인딩 사용시 [()] 사용 컴포넌트도 일종의 DOM 커스텀 디렉티브는 템플릿이 없을 수도 있다. Typescript는 브라우저에서 실행 못한다. bundle이 사용된다. javascript는 sourcemaps을 지원 index.html 페이지 하나로 해결 로딩 순서는 index.html -> main.ts -> app.moudle.ts -> app.component.ts -> app.component.html 데코레이터는 class에서만 사용가능 한 것이 아니다. 속성 앞에 @Input(), @Output을 해줘야만 다른 컴포넌트에서 바인딩이 가능하다. @Input('별칭')으로 바인딩 별칭 설..
sudo npm install -g @angular/cli@latest # mac인 경우 npm install -g @angular/cli@latest # windows인 경우 앵귤러 cli 다운 ng new 프로젝트이름 --no-strict 프로젝트 생성 ng g c 컴포넌트이름 컴포넌트 생성 ng g c 컴포넌트이름 --skip-tests true 테스트파일 빼고 컴포넌트 생성 ng serve 로컬서버 기동 Could not find an NgModule. Use the '--skip-import' option to skip importing in NgModule. 에러 발생시 ng g c 컴포넌트이름 --skip-import moudle이 없을때 moudle import를 생략하고 생성 npm in..
git init => git 생성 git branch -m [branch이름] => branch 변경 git remote add origin "github주소" => github 연결 git remote -v => git remote 확인 git remote rm origin => remote 삭제 git config user.name "닉네임" (git config --global 붙일시 특정 사용자의 모든 저장소 설정에 적용) =>name 설정 git config user.email "이메일" (git config --global 붙일시 특정 사용자의 모든 저장소 설정에 적용) => email 설정 git add . => 파일 변경 사항 저장 git commit -m "저장할때 주석" => githu..
Windows 기준 pip3 install virtualenv => 가상환경 설치 virtualenv {폴더생성할 이름} => 앱생성 {폴더이름}/Scripts/activate => 가상환경 사용 pip3 install django => 장고 설치 django-admin startproject {생성할 프로젝트 이름} => 프로젝트 생성 django-admin startapp {생성할 앱이름} # venv python manage.py startapp {생성할 앱이름} => 앱 생성 python manage.py makemigrations => 마이그레이션 생성 python manage.py showmigrations => 모든 마이그레이션을 보여주고 각 마이그레이션별 적용 여부 확인 python man..