nwsjs v0.2.3
NwSJS
No White Space JavaScript
Simple, lightweight, ES6 compliant, cross-platform CLI utility to strip whitespace and comments from Javascript source code.
Usage
Running
Linux
$ ./nwsjs srcFile.js > outFile.jsWindows
> nwsjs.exe srcFile.js > outFile.jsNote: srcFile.js and outFile.js must NOT be the same file!
Using From NPM
Installing
Linux
$ npm install nwsjsor
$ npm install -g nwsjsWindows
> npm install --no-bin-links nwsjsNote: Bin links for Windows do NOT work properly currently. Therefore, installing NwSJS globally on Windows is NOT supported. NwSJS will therefore be installed to node_modules\nwsjs\nwsjs.exe on Windows.
Running
Linux
$ ./node_modules/.bin/nwsjsor
$ ./node_modules/nwsjs/nwsjsor (if installed globally)
$ nwsjsWindows
> node_modules\nwsjs\nwsjsBuilding
Linux
$ bash build.bashWindows
> buildNote: Building requires that g++ be available on your PATH for both Linux and Windows.
Testing
Download dependencies for testing
npm installRun test suite
npm testNote: For Windows users, running tests requires the availability of a valid bash.exe on your %PATH%.
Testing Process
NwSJS is tested against Microsoft's Typescript compiler and the Browserify Javascript bundler. Every .js file pulled in by Typescript, Browserify, as well as the various front end and backend frameworks pulled in by the test files are first compressed. The .ts files under tests are then compiled. If NwSJS crashes or the compiler raises an error while compiling then the test fails.
Each compiled .ts file is then bundled using Browserify. The resulting bundles are then compressed. The compressed and uncompressed bundles are run and their return codes are compared. If the return codes differ, then the test fails.
Note: See test.bash for full process and more notes.
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
