Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80758 views
#!/usr/bin/env node
var fs, transform;

fs = require('fs');

transform = require('../lib/transformer').transform;

if (!process.argv[2]) {
  return console.warn('provide a cjsx file to compile as the first argument');
}

process.stdout.write(transform(fs.readFileSync(process.argv[2], 'utf8')));