Why not make an args parser that can do more than std/flags? (similar to yargs)
Have you checked out the third party module args?
@srepollock Thank you, I have not seen. But I think it would be nice to add this (or something similar) to std.
@srepollock Thank you, I have not seen. But I think it would be nice to add this (or something similar) to
std.
it's already in std
import { parse } from "https://deno.land/std/flags/mod.ts";
console.dir(parse(Deno.args));
Yo I did not see that! Fantastic!
Could be closed?
Most helpful comment
@srepollock Thank you, I have not seen. But I think it would be nice to add this (or something similar) to
std.