2011-11-26 17:00:12 -06:00
2011-11-26 17:00:12 -06:00
2011-11-26 17:00:12 -06:00
2011-11-26 17:00:12 -06:00
2011-11-26 13:22:10 -06:00
2011-11-26 17:00:12 -06:00
2011-11-26 13:22:10 -06:00
2011-11-26 13:26:18 -06:00

Compile javascript with node.js. This allows you to move your executable around without needing to install the node.js runtime.

Requirements

  • Linux / Mac

Installation

Via NPM:

	npm install nexe

Or git:

	git clone 

Motivation

  • Developing client-side utilities without requiring to install a bunch of dependencies first (node.js, npm).
  • Ability to run multiple node.js applications with different node.js runtimes.

CLI Usage

	
Commands:
	-i 			 the input javascript files
	-o      	 the output executable
	--runtime    the runtime version of node.js to compile with

Examples:
	-i input.js -o my-binary --runtime=0.6.2    compile javascript file with node  

Code usage


	var nexe = require('nexe');

	nexe.compile('input.js', 'output.bin', function() {
		
	});
	
S
Description
No description provided
Readme MIT 32 MiB
Languages
TypeScript 90.1%
JavaScript 9.9%