uskill
v1.0.1
Published
A simple CLI tool for daily development tasks
Readme
uskill
A simple CLI tool for daily development tasks.
Installation
npm install -g uskillUsage
uskill [command] [options]Commands
hello
Say hello to someone.
uskill hello <name>
uskill hello <name> --excitedtime
Display current time in various formats.
uskill time
uskill time --format iso
uskill time --format unixcalc
Calculate a mathematical expression.
uskill calc "2 + 3 * 4"
uskill calc "(10 + 5) / 3"uuid
Generate a random UUID.
uskill uuidHelp
uskill --help
uskill [command] --helpAPI
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"License
MIT
