node.js - How to create .exe in nodeJS and babel -


i'm sorry in advance bad english...

i'm have start learn nodejs , have created little utils app, convert windows executable, saw 'nexe' permit when want compile js files, crash beacause use new version of javascript (babel permit that)... dont know, compile app...

my package.json

{ "name": "server", "version": "0.0.1", "scripts": { "start": "nodemon src/app.js --exec babel-node --presets es2015,stage-2" }, "dependencies": { "babel-cli": "^6.26.0", "babel-preset-es2015": "^6.24.1", "babel-preset-stage-2": "^6.24.1", "ffi": "^2.2.0", "nodemon": "^1.11.0", "ref": "^1.3.4", "ref-array": "^1.2.0", "robotjs": "^0.4.7", "socket.io": "^2.0.3" 

} }

thank mouch


Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -