Skip to content

muhibbudins/deno-arguments

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Arguments

Simple CLI arguments parser for Deno — Learn Deno

Usage

Example code, create file test.ts and fill with below code.

import { args } from "deno"
import Arguments from "https://github.com/muhibbudins/deno-arguments/index.ts";

console.log(Arguments(args))

And then run :

$ deno test.ts variable --env=development -b boop --test=true --beep boop
$ > { variable: true, env: "development", b: "boop", test: "true", beep: "boop" }

Related

License

This project under MIT License

About

Simple CLI arguments parser for Deno — Learn Deno

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published