# How to create an executable file

**URL:** https://forum.kirupa.com/t/how-to-create-an-executable-file/643868
**Category:** programming
**Created:** [August 14, 2020, 6:15pm UTC](https://forum.kirupa.com/t/how-to-create-an-executable-file/643868 "2020-08-14T18:15:08Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![hash](https://avatars.discourse-cdn.com/v4/letter/h/e56c9b/32.png) [@hash](https://forum.kirupa.com/u/hash)
#### Post date: [August 14, 2020, 6:15pm UTC](https://forum.kirupa.com/t/how-to-create-an-executable-file/643868/1 "2020-08-14T18:15:08Z")

</div>

Hi  
I have an open source code which was designed in React and I am trying find out how to make it into an executable file .exe

The instruction which I was giving as following only go so far:

1/ Open cmd  
2/ Go to directory of file  
3/ Type npm install - this will install the dependency  
4/ You can use:  
- running in developer mode: npm run dev  
or  
- packaging to windows: npm run package-win

🙂

---

<div class="post-metadata">

### Author: ![kirupa](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/kirupa/32/11616_2.png) [@kirupa](https://forum.kirupa.com/u/kirupa)
#### Post date: [August 14, 2020, 8:26pm UTC](https://forum.kirupa.com/t/how-to-create-an-executable-file/643868/2 "2020-08-14T20:26:47Z")

</div>

What would this executable do? Just run the commands you have listed? Will it launch the browser with the React app running inside it?
