Andrew Kaiser

Results 71 issues of Andrew Kaiser

It turns out something that is [fairly difficult to set up in sveltekit](https://github.com/sveltejs/kit/issues/927) its pretty easy to add in fresh. I am referring to having an explicit server initialization step...

I have made this third party module https://deno.land/x/wallpal. It is a cli script, so I attempted to install it with ```bash deno install -A --import-map=https://deno.land/x/[email protected]/import_map.json https://deno.land/x/[email protected]/wallpal.ts ``` deno prints this...

given the following code snippet ```ts async function* read_input() { while (true) { const buffer = new Uint8Array(1024); Deno.setRaw(Deno.stdin.rid, true); const length = await Deno.stdin.read(buffer); Deno.setRaw(Deno.stdin.rid, false); yield buffer }...

**Is your feature request related to a problem? Please describe.** I need to parse the "set-cookie" response header of a request for a web scraper. **Describe the solution you'd like**...

**Is your feature request related to a problem? Please describe.** I would like to mock out http requests inside deno tests **Describe the solution you'd like** It would be awesome...

deno-canvas supports writing text to a canvas: ```ts import { createCanvas } from 'https://deno.land/x/canvas/mod.ts' const canvas = createCanvas(500,600) const ctx = canvas.getContext('2d') ctx.fillStyle='red' ctx.fillText(50,50,"Hello World") await Deno.writeFile("image.png", canvas.toBuffer()); ``` this...

I have noticed that importing this library will cause a long delay before my script is executed. I assume the delay before the script executes is because the wasm file...

bug
help wanted

[pnpm](https://pnpm.js.org) is an alternative to npm that does not adhere to a flat node_modules structure. It instead organizes dependencies as a tree, only allowing files to require modules it explicitly...

So I have a database file (created by better-sqlite3 over in nodejs land) that I cannot seem to open with this library. I am able to read it from better-sqlite3,...

using the latest compiled plugin ```bash wget https://github.com/crabmusket/deno_sqlite_plugin/releases/download/v0.4/libdeno_sqlite_plugin.so ``` the following code results in an error ```ts import { Sqlite } from 'https://deno.land/x/[email protected]/src/mod.ts' Deno.openPlugin('./databases/libdeno_sqlite_plugin.so') const sqlite = new Sqlite() const...