본문 바로가기

전체 글79

[ VSCode ] JShint , ES6 설정하기 1. root 폴더에서 .jshintrc 파일을 만들어 준다.2. esversion 을 6으로 설정해준다.{ "esversion": 6 } 출처https://stackoverflow.com/questions/27441803/why-does-jshint-throw-a-warning-if-i-am-using-const 2017. 9. 3.
[ 세미나 후기 ] TypeScript 기초 세미나 (양재동코드랩) 날짜 9월 2일 (토) 10시 00분 ~ 17시 00분장소 서울창업허브더기랑 같이신청 https://onoffmix.com/event/111044세미나 정보강사 이웅재 ( Mark Lee ) 님타입스크립트의 기초에 대해서 배운다.목차TypeScript Overview개발 환경 구축 및 컴파일러 사용IDE 활용Compiler OptionsTypeScript Basic TypesVar, let, constType assersionsType aliasInterfaceIndexable TypesClassGenericiteratordecoratorType inferenceTypeScript RoadmapProject 맛보기느낀점점심시간을 제외한 5시간 정도에 타입스크립트를 전혀 모르던 내가 타입스크립트가 무엇인지.. 2017. 9. 3.
[ WebStorm ] Javscript ECMAScipt 6 설정하기 File > Settings > Languages & Frameworks > JavaScriptJavaScript language version 을 ECMAScript 6로 바꿔준다. 2017. 8. 31.
[ WebStorm ] 프로젝트를 깃허브로 연결하기 1. GitHub 사용을 가능하게 만든다.VCS > Enable Version Control Integration... 2. Git 으로 설정 3. GitHub로 프로젝트 ImportVCS > Import into Version Control > Share Project on GitHub 4. 생성 할 레파지토리의 이름과 설명을 적는다. 5. 성공~ 깃허브에 접속하면 새롭게 생성된 레파지토리를 확인할 수 있다. 출처https://www.jetbrains.com/help/webstorm/2017.2/using-git-integration.html#put-existing-project-under-Git 2017. 8. 31.
[ WebStorm ] Jetbrains 학생 라이센스 등록하기 1. https://www.jetbrains.com/ 에 접속해서 IDEs > WebStorm 들어가기 2. Buy > DISCOUNTED AND COMPLIMENTARY LICENSES > For students and teachers 3. APPLY NOWJetBrains에서 제공하는 모든 제품을 사용할 수 있다. 4. 이름과 학교 메일을 입력한다. 5. Confirm Request학생용 메일에 접속하면 JetBrains로 부터 확인을 요청하는 메일이 와있다. 6. Activate Educational LicenseConfirm Request 링크에 접속 후 다시 메일에 들어가 보면 학생 라이센스 관련 정보를 입력하는 링크가 도착해있다.Activate Educational License 에 접속해서 .. 2017. 8. 28.
[Ubuntu 16.04] Atom 설치 Ubuntu 16.04 Atom 설치 (PPA이용) Atom ppa 추가 $ sudo add-apt-repogitory ppa:webupd8team/atom apt update $ sudo apt update Atom 설치 $ sudo apt install atom Atom 삭제 $ sudo apt remove --purge atom 출처http://tipsonubuntu.com/2016/08/05/install-atom-text-editor-ubuntu-16-04/ 2017. 7. 12.