0.0.1 • Published 7 years ago

rit v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

Say you have index.js in your CWD:

module.exports = function() {
  console.log('here')
}

module.exports.test = function() {
  console.log('test')
}

module.exports.args = function(args) {
  console.log(args)
}
$ rit
here

$ rit . test
test

$ rit ./ args --test=1
{ test: 1 }

$ rit ./index.js args --test=1 --test=2
{ test: [ 1, 2 ] }

$ rit ./index.js args --test=1 --test2=2
{ test: 1, test2: 2 }

$ rit ./index.js args --test=1 --test2=2 --ya 42
{ test: 1, test2: 2, ya: 42 }