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] .


  • npm
  • GitHub

  • 주요 변경 사항


  • 거의 모든 버그 수정
  • electron@^2.0.4로 업그레이드
  • [email protected]로 업그레이드
  • 더 작은 종속성
  • 쉬운 CLI 라이크 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"
      }
    }
    






    할 것


  • 더 많은 예
  • 추가 CLI 옵션
  • 예1.) nextron build --all
  • 예2.) nextron build --ia32 --win

  • 기본 프로세스와 렌더러 프로세스 모두에서 변경 사항 및 핫 리로딩을 관찰하십시오
  • .

    좋은 웹페이지 즐겨찾기