-
## Steps to reproduce
1. Create a `deno.json` with these contents:
```json
{
"imports": {
"vite": "npm:vite@5.4.5"
},
"tasks": {
"dev": "vite"
}
}
```
…
-
Hey guys,
I've run into issues trying to use class [property decorators](https://www.typescriptlang.org/docs/handbook/decorators.html#property-decorators). The following example demonstrates the is…
-
While Node.js is by far the most popular server-side JavaScript runtime, there have been a few alternative runtimes, or Node.js environments with subsets of the standard library available for use, tha…
-
We're using Deno in a FaaS setup and noticed that our server processes leak a lot of memory. Digging deeper, I found several leaks related to Deno/V8.
Here's a repro running a worker in a loop: htt…
-
Example:
```rust
import gleam/erlang.{rescue}
import gleam/io
pub fn main() {
io.println("Hello, Joe!")
}
```
Generates an import in the JS module to `gleam/erlang.{rescue}`, even th…
-
JS bundlers have a lot of complexity and we do not want to take on all that complexity in Deno. We believe this can be done effectively in "user space" - that is, it doesn't need to be built into the …
-
I would like Node.js to support the following user experience
```bash
$ node script.ts
Typescript support is missing, install it with:
npm i --location=global typescript-node-core
$ npm i --loc…
-
Following the [esbuild Transpiler Middleware Deno / Deno Deploy](https://github.com/honojs/middleware/tree/c56b22f15ad9203d46b15440bd7764e45d244b99/packages/esbuild-transpiler#deno--deno-deploy) succe…
-
## Context
I currently build my library in two different ways, once for Deno and once for Node. Since my library is able to work with files from various sources, the Node build should accept the No…
-
I don't have any degree in CS nor am familiar with JavaScript engine implementation.
But I believe that JavaScript has a dynamic type system, not static.
So, as I noticed in the title, this propos…