pomdtr
pomdtr
DDeno
Created by pomdtr on 7/16/2024 in #help
How to update in a cli distributed via jsr?
thanks ! I was not sure if the entrypoint (jsr:@smallweb/embed) counted as a dependency
3 replies
DDeno
Created by pomdtr on 10/6/2023 in #help
How to read all text from stdin.
wow this looks weird
8 replies
DDeno
Created by pomdtr on 10/6/2023 in #help
How to read all text from stdin.
thanks! toJson is also quite useful
8 replies
DDeno
Created by pomdtr on 10/6/2023 in #help
How to read all text from stdin.
Ok I found it. Here it is for future reference
import { toArrayBuffer } from "https://deno.land/std@0.203.0/streams/mod.ts";

const input = new TextDecoder().decode(await toArrayBuffer(Deno.stdin.readable))

console.log(input);
import { toArrayBuffer } from "https://deno.land/std@0.203.0/streams/mod.ts";

const input = new TextDecoder().decode(await toArrayBuffer(Deno.stdin.readable))

console.log(input);
8 replies