| Mar | APR | May |
| 18 | ||
| 2020 | 2021 | 2022 |
COLLECTED BY
Collection: github.com
JavaScript (JS) is a lightweight interpreted or JIT-compiled programming language with first-class functions. While it is most well-known as the scripting language for Web pages, many non-browser environments also use it, such as Node.js, Apache CouchDB and Adobe Acrobat. JavaScript is a prototype-based, multi-paradigm, dynamic language, supporting object-oriented, imperative, and declarative (e.g. functional programming) styles.
pipeline should immediately fail with ERR_STREAM_DESTROYED when any of the streams have already been destroyed.
Readable might need a little extra consideration since it's possible to read the data after being destroyed. Should maybe check _readableState.errored and/or _readableState.ended.
Refs: nodejs/node#29227 (comment)
Read more
good first issue
stream
Open
const body = new TextEncoder().encode("Hello World"); for await (const conn of Deno.listen({ port: 80 })) { (async () => { for await (const { respondWith } of Deno.serveHttp(conn)) { respondWith(new Response(body)); } })(); }worker.ts
ne
Read more
bug
good first issue
runtime
Open
// @ts-check class Foo { abc; constructor(name) { }Read more Bug Domain: Completion Lists good first issue help wanted Open