DEV Community

Discussion on: "Nextron": Electron + Next.js dream

Collapse
 
burzumumbra profile image
Ronald Flores Sequeira

Thanks for the hard work, I'll keep testing it, hope to see great support for the project, already 1k download.

Collapse
 
saltyshiomix profile image
Shiono Yoshihide

Fix almost all bugs, now released nextron@0.6.1 <3

Upgraded dependencies:

  • electron@^2.0.4
  • next@6.1.1

Peer dependencies:

  • react@^16
  • react-dom@^16

Here is sample:

$ nextron init test-app
$ cd test-app

# run development mode
$ yarn dev

# release build
$ yarn build
Collapse
 
burzumumbra profile image
Ronald Flores Sequeira

Glad to hear that,I'll be testing later in the day.

Thread Thread
 
saltyshiomix profile image
Shiono Yoshihide • Edited

Implemented some examples like Material UI <3

You can try it by the command like below:

# Install latest nextron
$ npm i -g nextron@latest
$ nextron -v
nextron v0.7.5

# Init a nextron app with material-ui
$ nextron init test-app --template with-javascript-material-ui

# If you are typescript lover, you can also try typescript one :)
$ nextron init test-app --template with-typescript-material-ui

# Then, start the app
$ cd test-app
$ yarn (or `npm install`)
$ yarn dev (or `npm run dev`)

Hope you can see it:

nextron

Thread Thread
 
devrnsistema profile image
devrnsistema

how do I be able to access the pages with the application and production, developing access normally by port 8888, but in production how do I do?