hacker

Hack on your project easily. A liftoff proof-of-concept.
How to use it
- Install globally with
npm install -g hacker.
- Write your
Hackerfile.
- Run
hacker in your project directory.
- The rest is up to you.
Options
--cwd specify the working directory to run hacker
--hackerfile specify an exact hackerfile path
--require require an external module before loading your hackerfile
--verbose show some debugging info about how hacker is working
Examples
Hackerfile.js
var fs = require('fs');
fs.writeFileSync('tmp', 'i will be written relative to this file, always.');
To run:
hacker
Hackerfile.coffee
fs = require 'fs'
fs.writeFileSync 'tmp', 'i will be written relative to this file, always.'
To run:
hacker
License
MIT