0.0.2 • Published 7 years ago

seafret v0.0.2

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

#Seafret - Minimal CLI parser

npm install --save seafret

const Seafret = require('seafret');
const otter = new Seafret('2.0.0');

otter
.option('-go', 'Tells the Program to Run')
.option('-food', 'Tells the program to get food')
.send(process.argv)

if(otter.food) {
  console.log("daym")
}