0.1.0 • Published 10 years ago

es-tar v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

es-tar

include #include extend-script file to standalone executable extend-script

usage

// $ npm install es-tar
var fs = require('fs');
var estar = require('es-tar');

var jsxPath = __dirname+'/jsx/test.jsx';
var out = __dirname+'/build.jsx';

// stream
estar(jsxPath,{encoding:'utf8'})
  .pipe(fs.createWriteStream(out));

// sync
console.log(estar.sync(jsxPath,{encoding:'utf8'}));

or

$ npm install -g es-tar
$ es-tar jsx/test.jsx // => stdout
$ es-tar jsx/test.jsx -o build.jsx

or with fakestk

$ es-tar jsx/test.jsx | fakestk
0.1.0

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago

0.0.0

10 years ago