Hack on your project easily. A liftoff proof-of-concept.
- Install globally with
npm install -g hacker. - Write your
Hackerfile. - Run
hackerin your project directory. - The rest is up to you.
--cwdspecify the working directory to run hacker--hackerfilespecify an exact hackerfile path--requirerequire an external module before loading your hackerfile--verboseshow 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