전체 글

· WEB/Electron
[Electron] 코드 변경시 자동 새로고침 되도록 설정하는 방법 electron-reload 를 사용하면 된다. 먼저 electron 과 electron-reload를 프로젝트에 설치해 준다. $ npm install electron $ npm install electron-reload electron과 프로젝트 모두 reload 할 경우 아래와 같이 직접 node_modules의 electron폴더로 잡아준다. require('electron-reload')(__dirname, { electron: require(`${__dirname}/node_modules/electron`) }); 위와 같이 설정하면, electron 실행하면서 html, js, css 등을 수정할 경우 자동으로 electro..
[JavaScript] popper.min.js.map 파일 (참고) stackoverfolw 에서 찾은 popper.min.js.map 파일
· WEB/Electron
[Electron] Developer Tool 개발자 도구 활성화 방법 const { BrowserWindow } = require('electron') let win = new BrowserWindow() win.webContents.openDevTools() 또는 Ctrl + Shift + I [참고] electron Document
[MySQL][macos] ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement. 해결 방법 > set password = password('비밀번호'); 참고 : stackoverflow
[MySQL] 환경변수 path 추가 mysql $ export PATH=${PATH}:/usr/local/mysql/bin mysql.server $ export PATH=${PATH}:/usr/local/mysql/support-files + 추가mysql 설치 및 "/etc/paths"에 추가 방법 : Installing and running MySQL on macOS with errors resolved
· 기타
[Tools] Mac osx 에 xcode 없이 git 사용하기 Git-scm 에서Max OS X버전 다운 .pkg 실행하여 git 설치 완료 terminal에 git을 입력해보면 xcode를 설치하라는 메세지가 뜬다. $ git xcode-select: note: no developer tools were found at '/Applications/Xcode.app', requesting install. Choose an option in the dialog to download the command line developer tools. xcode를 무시하기 위해 환경변수에 git을 추가해 준다. terminal에 아래와 같이 입력해 주면 된다. $ echo "PATH=/usr/local/git/bi..
S0PH1A
Web Programmer