Hadeeb Farhan
Hadeeb Farhan
How about making `nextron` a module like [`create-react-app`](https://facebook.github.io/create-react-app/), [`electron-webpack`](https://webpack.electron.build/) or [`preact-cli`](https://github.com/preactjs/preact-cli) ? It will make upgrades easier. `create-nextron-app` and `nextron` can be like `create-react-app` and `react-scripts`. The helpers functions can...
First of all, thanks for the well structured code. It was really easy going through it. I have a working draft [here](https://github.com/hadeeb/nextron/tree/cli-poc). Please have a look at it. - No...
You can override default styles by just passing a `style` prop.
Name of exported components could be improved. The readme also has to be updated to reflect these changes.
You can use the [scheme](https://github.com/sindresorhus/electron-serve#scheme) option to create 2 different roots. ```js const loadURLOne = serve({ directory: 'one', scheme: 'app' }) const loadURLTwo = serve({ directory: 'two', scheme: 'foo' })...