hacker
v3.0.1
Published
Hack on your project easily. A liftoff proof-of-concept.
Downloads
54
Readme
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