DEV Community

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

 
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?