0.2.1 • Published 9 years ago

jas v0.2.1

Weekly downloads
1
License
Apache-License-2....
Repository
github
Last release
9 years ago

jas

Preprocessor for JavaScript

Installation

npm install -g jas

Usage

jas --compile myfile.jas
jas --watch myfile.jas
jas --watch mydir
jas --compile myfile.jas --output output.js

Syntax

@import ../src/main.js;

@define('->', 'function'); //in progress yet, join us to implement

@define('DEBUG_MODE', 'true');
@if(DEBUG_MODE) //in progress yet, join us to implement
	console.trace('Message');
@else
	showErrorDialog();
@end