Electron + Next.js 앱 빌드 3단계
# 1. Install
$ npm i -g nextron
# 2. Create nextron app (with template of `examples/with-javascript-material-ui`)
$ nextron init test-app --template with-javascript-material-ui
# 3. Run development mode
$ cd test-app
$ yarn (or `npm install`)
$ yarn dev (or `npm run dev`)
방금 출시되었습니다 [email protected] .
주요 변경 사항
electron@^2.0.4
로 업그레이드[email protected]
로 업그레이드nextron init test-app
examples/with-javascript-material-ui
) 용법
설치
$ npm install --global nextron
애플리케이션 만들기
<MY-APP>
를 생성하려면 아래 명령을 실행하십시오.$ nextron init <MY-APP>
템플릿으로 애플리케이션 만들기
examples/*
샘플 앱을 템플릿으로 사용할 수 있습니다.example/with-typescript
앱을 만들려면 아래 명령을 실행합니다.$ nextron init <MY-APP> --template with-typescript
개발 모드로 Electron 실행
npm run dev
를 실행하면 nextron이 전자 앱을 자동으로 시작합니다.{
"scripts": {
"dev": "nextron"
}
}
프로덕션 빌드
npm run build
를 실행하면 nextron이 dist
폴더 아래에 패키지된 번들을 출력합니다.{
"scripts": {
"build": "nextron build"
}
}
할 것
nextron build --all
nextron build --ia32 --win
Reference
이 문제에 관하여(Electron + Next.js 앱 빌드 3단계), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/saltyshiomix/build-the-electron--nextjs-app-for-3-steps-5g2p텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)