본문 바로가기

프로그래밍119

개발자도구 콘솔에서 크롬 확장 프로그램 에러 에러 메시지가 자꾸 뜨길래 뭔가 자세히 봤더니 크롬 확장 프로그램 관련 에러로 보였다 Error handling response: TypeError: Cannot read property 'always' of undefined at chrome-extension://cnfngpgfjllafbghaimjcmailafcdhod/releaseDrag.js:90:49 내가 설치한 크롬 확장 프로그램에서 Drag-Free 때문에 발생되는 오류로 Drag-Free를 삭제하거나 사용안함으로 설정을 변경해보았다 다시 실행해보니 위의 에러 메시지가 안보이는 걸 확인할 수 있다 끝. 2020. 12. 11.
[React] immutable Failed to compile 개발서버 구동시... Failed to compile. ./node_modules/immutable/contrib/cursor/index.js SyntaxError: ...\node_modules\immutable\contrib\cursor\index.js: Unexpected token (25:0) 23 | '\n' + 24 | 'https://github.com/redbadger/immutable-cursor\n' + > 25 | ); | ^ 26 | 27 | /** 28 | * Cursor is expected to be required in a node or other CommonJS context: 해당 에러가 발생할 경우, 실수로 IDE의 자동완성 기능으로 import { from } from.. 2020. 11. 18.
[Intellij] 유용한 단축키 정리중... 인텔리제이에서 유용한 단축키를 생각날 때마다 추가해보려고 한다 단축키 설명 Mac > control + g Window > alt + j 영역 선택 후 단축키 사용시, 선택한 영역의 하단으로 동일한 단어가 선택됨 Mac > control + G Window > alt + J 영역 선택 후 단축키 사용시, 선택한 영역의 상단으로 동일한 단어가 선택됨 2020. 8. 29.
[Linux] 리눅스 명령어 정리 MacOS는 Terminal 사용하면 되고, WindowOS는 Git Bash(https://gitforwindows.org/) 설치해서 사용하자.모든 명령어 뒤에 --help를 붙이면 상세한 설명이 English로 나옴 zzZ.Change Directorycd 이동할경로cd .. (상위경로로 이동)Listls (현재 경로의 목록)Movemv 현재파일 이동할경로mv 폴더이름 이동할경로Make Directorymkdir 폴더이름Removerm 파일 (파일 삭제)rm -d 폴더 (텅 빈 폴더 삭제)rm -r 폴더 (r은 recursive, 폴더와 내용들을 반복적으로 삭제)rm -rf 폴더 (f는 force, 존재하지 않는 파일들과 인수들을 무시하고 삭제)...계속... 2020. 5. 2.
[React Native] 개발에 필요한 아이들 설치부터 실행까지 시켜보자 mac OS Catalina를 기준으로 설치한다. Homebrew https://brew.sh/ Homebrew The Missing Package Manager for macOS (or Linux). brew.sh 홈페이지에 보면 Apple(또는 Linux 시스템)에서 제공하지 않는 유용한 패키지 관리자를 설치한다고 한다. /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" 터미널에 붙여넣자. 설치되는데 시간이 좀 걸린다. Yarn https://classic.yarnpkg.com/en/docs/install/#mac-stable Yarn Fast, reliable, and sec.. 2020. 4. 6.