Merge pull request #46 from northshorenetworks/master

Updated README.md
This commit is contained in:
Craig Condon
2014-02-28 19:43:16 -08:00
+3 -3
View File
@@ -15,7 +15,7 @@ Nexe is a command-line utility that compiles your Node.js application into a sin
## Requirements
- Linux / Mac
- Linux / Mac / BSD
## Caveats
@@ -47,7 +47,7 @@ Options:
-o, --output The output binary [default: cwd/release/app.nex]
-r, --runtime The node.js runtime to use [default: "0.8.15"]
-t, --temp The path to store node.js sources [default: /tmp/nexe]
-f, --flags Don't parse node and v8 flags, pass through app flags [default: false]
````
@@ -58,7 +58,7 @@ Options:
var nexe = require('nexe');
nexe.compile({ input: 'input.js', output: 'path/to/bin', runtime: '0.8.15' } function() {
nexe.compile({ input: 'input.js', output: 'path/to/bin', runtime: '0.8.15', flags: true } function() {
});