[Electron] 글 모음
https://cpro95.tistory.com/501 ElectronJS 일렉트론 강좌 2편 SQLite3 sql.js 안녕하세요? 지난 시간에 이어 2편 진행토록 하겠습니다. 1편: https://cpro95.tistory.com/500 ElectronJS 일렉트론 강좌 1편 SQLite3 sql.js 안녕하세요? 오늘은 Electron 강좌를 시작해 볼까 합니다. ElectronJ.. cpro95.tistory.com https://bug41.tistory.com/149 [Electron] 일렉트론 로컬저장소(Local Storage) 사용하기 일렉트론을 개발하다보면 값을 저장해야되는데, 그렇다고 db 연결하기도 애매모호하고 그냥 심플하게 몇개만 저장하고싶을때가 있다. 그럴때 electron-sto..
node.js/Electron
2022. 5. 2. 23:19
[Electron] Redux, React devtools 설치
yarn add electron-devtools-installer 라이브러리 설치 const { default: installExtension, REDUX_DEVTOOLS, REACT_DEVELOPER_TOOLS } = require('electron-devtools-installer'); app.whenReady().then(() => { installExtension([REDUX_DEVTOOLS, REACT_DEVELOPER_TOOLS]) .then((name) => { console.log('name: ', name)}); }) 일렉트론 Main 파일에 추가
node.js/Electron
2022. 5. 2. 23:16