반응형
javascript 응용프로그램 개발(eletron) 간단 정리
1. node.js 설치
2. 프로젝트 생성
mkdir electron_test
cd electron_test
npm init
package.json - scripts 수정, devDependencies 추가
{
"name": "testapp",
"version": "1.0.0",
"description": "testapp",
"main": "index.js",
"scripts": {
"start": "electron ."
},
"author": "nplus",
"license": "ISC",
"dependencies": {
"electron": "^12.0.2"
},
}
index.js index.html 작업....
ipcMain, ipcRenderer로 js와 html 통신
3. 실행
npm start
4. exe파일 생성
electron-packager 설치
npm run build
반응형