James M Snell
James M Snell
e.g. ```console $ ncu-ci run node-test-pull-request 12345 ```
Today @dshaw and I led the first meeting of a new group of enterprise Node.js adopters that is organizing with the specific purpose of providing feedback to the core project...
With the introduction of web streams, it would be good to integrate support into the various common stream utilities... Refs: https://github.com/nodejs/node/pull/39134 /cc @mcollina @ronag * `stream.finished()` ```js const { finished...
In Node.js we have implemented a Node.js specific ability for various built-in objects to provide their own serialization/deserialization for cloning or transfer. The mechanism work by placing a platform host...
* Allows multiple respond/respondWithNewView to partially resolve readAtLeast byob reads. * Fix IdentityTransformStream minBytes calculation * Properly calculate atLeast with multi-byte views /cc @harrishancock
Fresh checkout of the repo... ``` jasnell@Cloudflare:~/projects/workerd$ bazel build //src/workerd/server:workerd INFO: Repository v8_python_deps instantiated at: /home/jasnell/projects/workerd/WORKSPACE:200:12: in /home/jasnell/.cache/bazel/_bazel_jasnell/d8d6f6915f66665582ff8c3cdeaeb6c6/external/rules_python/python/pip.bzl:53:19: in pip_install Repository rule pip_repository defined at: /home/jasnell/.cache/bazel/_bazel_jasnell/d8d6f6915f66665582ff8c3cdeaeb6c6/external/rules_python/python/pip_install/pip_repository.bzl:67:33: in ERROR: An error...
Currently if I run `workerd server config.capnp` and ctrl-c to exit, the output to the console is a very unfriendly... ``` bazel-bin/src/workerd/server/workerd serve /home/james/cloudflare/woerd/samples/helloworld/config.capnp ^C*** Received signal #2: Interrupt stack:...
Adds a dependency to buffer-from /cc @mafintosh
When sampler.js is running in a worker thread, redirect processstat to a different file and suppress the systeminfo file. @goto-bus-stop .. in my local environment I'm seeing a failure in...
Attempting to run the following in Node.js 13.11.0 ```js const { Worker, isMainThread, } = require('worker_threads'); if (isMainThread) { for (let n = 0; n < 100; n++) { new...