0

I am using reactjs for frontend and nodejs for backend. Now I want or have to convert this app or project in exe file. Is some way I can package this into a .exe? Please suggest me if this possible or not. If possible please help me for this.

4
  • 3
    You may be looking for Electron. Commented May 9, 2019 at 17:04
  • @SLaks can you explain more because I am in new this. Commented May 9, 2019 at 17:07
  • Here Commented May 9, 2019 at 17:29
  • 1
    Why would you do this? Commented May 9, 2019 at 20:22

1 Answer 1

2

Electron has already been mentioned by @SLaks.

Another way to package a JavaScript app as an executable is using NW.js. Docs here.

Simply, compress your .js sources (you'll need to write some NW boilerplate, see the docs) into a .zip, and concatenate that with nw.exe:

copy /b nw.exe+your.zip your.exe

Then you get your.exe, an executable version of your app.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.