GithubHelp home page GithubHelp logo

pbarbiero / enhanced-electron-react-boilerplate Goto Github PK

View Code? Open in Web Editor NEW
61.0 61.0 14.0 165 KB

Modern and somewhat opinionated react+electron+webpack boilerplate

License: MIT License

JavaScript 99.22% CSS 0.78%
electron javascript nodejs react webpack2

enhanced-electron-react-boilerplate's People

Contributors

codeamend avatar pbarbiero avatar terrabits avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

enhanced-electron-react-boilerplate's Issues

HMR nuking the store?

what is the point of hot reload if ones state is being killed on every change?

...or have I messed something up?

ERROR in unknown: Invalid number - npm run package

Thank for great boilerpalte!!

At some point I was not able to create package and I'm getting the next error:

                         Asset       Size  Chunks                    Chunk Names
 font/photon-entypo__10lnA.eot    48.6 kB          [emitted]         
font/photon-entypo__i1XI6.woff    30.7 kB          [emitted]         
 font/photon-entypo__BJxdK.ttf    48.5 kB          [emitted]         
                     bundle.js    2.51 MB       0  [emitted]  [big]  main
                    bundle.css    40.9 kB       0  [emitted]         main
                    index.html  227 bytes          [emitted]         

ERROR in unknown: Invalid number (70027:15)

When checking the bundle.js at this line the code there is:


function mkdirP (p, opts, f, made) {
   ... 
    if (mode === undefined) {
        mode = 0777 & (~process.umask()); // the issue is with the octal 0777 that should be 0o777
    }
   ....
}

Any idea how to fix it?

Error in loading images

Hi,
Thank you for providing such a boilerplate. I have been using this boiler plate to build my electron application. I added an image folder inside src/assets and imported images from the same inside react component. The images I import is loaded during development mode but not inside production mode.
I searched on the Internet and some one has written to add url-loaders instead of file-loader in webpack build configuration. I did the same and it worked is this a correct solution or else what are my options

Webpack loader config for bootstrap and possibly other loaders

In the file: webpack.dev.config.js

Compiled bootstrap from the node module 'bootstrap' didn't work until I made this change.

The CSS loader change from

{ test: /\.css$/, use: [{ loader: 'style-loader' }, { loader: 'css-loader' }], include: defaultInclude },

to

{ test: /\.css$/, loader:[ 'style-loader', 'css-loader' ] },

npm WARN deprecated [email protected]: babili has been renamed to babel-minify. Please update to babel-preset-minify

Hello,

Thanks for you work.

I tried today to test your projet, I got this warning

npm WARN deprecated [email protected]: babili has been renamed to babel-minify. Please update to babel-preset-minify

I have done a npm ls to find out which dependancies use it :

PS: If you want to check out another dev dependancies , I use https://david-dm.org/pbarbiero/enhanced-electron-react-boilerplate?type=dev

Spawn `electron .` automatically in the "dev" script?

Hi,

Is there a reason why you separate the dev commands into two commands to be run in separate consoles?

Another approach would be to spawn a separate electron process in webpack.dev.config.js. Borrowing heavily from electron-react-boilerplate, I was able to do the following:

In webpack.dev.config.js, I required child_process.spawn:

const { spawn } = require('child_process');

In the devServer section, I added:

setup() {
      spawn(
        'npm',
        ['run', 'testDev'],
        { shell: true, env: process.env, stdio: 'inherit' }
      )
      .on('close', code => process.exit(0))
      .on('error', spawnError => console.error(spawnError));
}

See:
https://github.com/chentsulin/electron-react-boilerplate/blob/master/webpack.config.renderer.dev.js

Is there a disadvantage to doing this? If it does make sense to do this, can I submit a pull request?

This project (and the basic-) version are great BTW. A much needed update to something like electron-react-boilerplate. THANKS!

Example page does not show persisted config

Hi again. The config file definitely gets updated on save, but the config object is empty upon reload. It looks like the app.on('ready') function that initializes it in electron-json-config is never getting called. Any idea why?

I suppose this could be a bug in electron-json-config??

Packaged app just displays empty window

Hi, trying to use your cool boilerplate. Works great in dev, but having probs with packaged app. Using Node 8.8.0/NPM 5.4.2 (OS X) and a clean clone of your repo, the built app just displays an empty window :(

Can't build at all with earlier versions (npm prune --production fails).

Pls advise...

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.