Hack on your project easily. A liftoff proof-of-concept.
- Install globally with
npm install -g hacker
. - Write your
Hackerfile
. - Run
hacker
in your project directory. - The rest is up to you.
--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
var fs = require('fs');
fs.writeFileSync('tmp', 'i will be written relative to this file, always.');
To run:
hacker
fs = require 'fs'
fs.writeFileSync 'tmp', 'i will be written relative to this file, always.'
To run:
hacker
MIT