A simple CLI tool for daily development tasks.
npm install -g uskill
uskill [command] [options]
Say hello to someone.
uskill hello <name> uskill hello <name> --excited
Display current time in various formats.
uskill time
uskill time --format iso
uskill time --format unix
Calculate a mathematical expression.
uskill calc "2 + 3 * 4"
uskill calc "(10 + 5) / 3"
Generate a random UUID.
uskill uuid
uskill --help
uskill [command] --help
This package also exports utility functions:
import { greet, getCurrentTime, calculate, generateUuid } from 'uskill';
greet('World'); // "Hello, World. Welcome to uskill."
getCurrentTime('iso'); // "2024-01-01T00:00:00.000Z"
calculate('2 + 3'); // 5
generateUuid(); // "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
MIT