deno_std icon indicating copy to clipboard operation
deno_std copied to clipboard

The Deno Standard Library

Results 549 deno_std issues
Sort by recently updated
recently updated
newest added

Currently the test cases of `http` only passes when executed from top level of the repository. This should pass also when executed from `./http` directory

**Is your feature request related to a problem? Please describe.** I love how with jsr.io, Deno's std is on the way to become a true "standard library" for JavaScript. Not...

suggestion
uuid
feedback welcome

`std/fs` test cases directly write files in source tree during test. This makes debugging of test cases difficult when they failed in the middle. These test cases should use temp...

**Describe the bug** feature: https://github.com/denoland/deno_std/pull/2067 The issue with this feature is that `Deno.test` is called by the `describe` function. If tests are added to the group after the `describe` function...

bug

Deno doesn't have `lutime` API and the timestamp of symlink is not updated.

bug
fs
upstream

The [`@std/http/unstable-signed-cookie`](https://jsr.io/@std/http/doc/unstable-signed-cookie/~/) is missing an end-to-end example of how the functions can be used together. Perhaps one can be added to [Deno by Example](https://docs.deno.com/examples).

good first issue
http
PR welcome

Currently there's some issue on windows if the first arg of `ensureSymlink` is `string`, and the 2nd is `URL` https://github.com/denoland/deno_std/pull/5087/files#diff-d054f7c416bc6ed97fb05df5229c9bcb858d9ba7df7f79e10d766d14121b6315R242

We need to confirm whether the following LOC are indeed unreachable. If they are, with sufficient validation, they can be removed. https://github.com/denoland/deno_std/blob/c52c6ee057cfd95ecc7a489dc1d0f99cc1d2e0c6/streams/delimiter_stream.ts#L199 https://github.com/denoland/deno_std/blob/c52c6ee057cfd95ecc7a489dc1d0f99cc1d2e0c6/streams/delimiter_stream.ts#L292

streams
PR welcome

Currently, if one tries to display multiple spinners at the same time, the spinners "override" each other. ```js import { Spinner } from "@std/cli"; const spinner1 = new Spinner({ color:...