Giter Club home page Giter Club logo

Comments (9)

frankhale avatar frankhale commented on May 27, 2024

Nothing in the example should be OS specific, it should just work on Linux. What issues are you experiencing?

from electron-with-express.

frankhale avatar frankhale commented on May 27, 2024

At any rate I will test today on Linux to see if there are any issues

from electron-with-express.

frankhale avatar frankhale commented on May 27, 2024

Just upgraded all dependencies and ran on Windows, everything is fine. Will test Linux when I get back home this afternoon.

express-with-electron-screenshot

from electron-with-express.

frankhale avatar frankhale commented on May 27, 2024

Need to make sure you download the node executable and it's shared library for Linux and put them in the root of the cloned repository like the screenshot above. It uses it's own Node to spawn the Express app. Of course you can change this if you want it to use the system installed Node but the general idea is that it'd be nice to bring our own Node in case the machine doesn't already have it.

from electron-with-express.

frankhale avatar frankhale commented on May 27, 2024

Okay currently testing in Linux and yes I can see how my instructions will need to be modified for running in Linux. I'm hoping to have this updated today.

from electron-with-express.

frankhale avatar frankhale commented on May 27, 2024

Okay it's working with just a very minimal change which I'll document shortly

express-with-electron-linux-screenshot

from electron-with-express.

frankhale avatar frankhale commented on May 27, 2024

I'm assuming that npm install has been ran for both the root of the repository and in express-app to install all dependencies.

Just to clarify there is really no need to download a stand alone copy of Node unless you really want to. You can just use a regular install of node to spawn Express. Line 65 in index.html would need to be changed slightly to:

node = spawn("node", ["./express-app/bin/www"], { cwd: process.cwd() })

Otherwise if you prefer to do it like I do continue reading...

Downloading a standalone Linux build is slightly more annoying than the nicely statically linked Windows executables but just as easy to deal with.

So basically download Node (whatever build you want, I always use latest):

https://nodejs.org/dist/latest-v7.x/node-v7.10.0-linux-x64.tar.gz

Unpack it into the root of the cloned repository. Then create a symbolic link called 'node' at the same location.

ln -sf node-v7.10.0-linux-x64/bin/node node

Here is a screenshot of what it should look like:

express-with-electron-linux-folder-structure-screenshot

Change line 65 in index.html to the following:

node = spawn("./node", ["./express-app/bin/www"], { cwd: process.cwd() })

Then you can run it:

./node start-electron.js &

from electron-with-express.

frankhale avatar frankhale commented on May 27, 2024

README has been updated to reflect what was done here to run on Linux.

Thank you for asking this!

Closing via 87c5e7a

from electron-with-express.

frankhale avatar frankhale commented on May 27, 2024

@mateo-io you good with these instructions?

from electron-with-express.

Related Issues (20)

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.