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

sql - Time in datatime field -

javascript - How to split the success output from an Ajax post? -

java - sharing object across different classes -