That's a small reminder! 👇
As of June 2026, HTTP has a new method - a GET with a `body` 😎
Meet QUERY (RFC 10008).
It lets you send complex queries in the body (like POST) while staying safe, idempotent, and cacheable (like GET). Already works on servers (Node.js, Go, Laravel…).
Browsers are still adding full support, usable now with care, with widespread adoption coming later in 2026+.
Yulin AWS simulator includes a simulated Amazon SNS for tests and local development. Topics are held in memory and actions are authorised by simulated IAM.
https://t.co/O4moBytBuO
📣 New Node.js release 📣
Node.js 26.7.0 is out with Perfetto tracing support, STORE loaders for private keys, and `module.register()` hooks are now disposable, plus many patches.
Full changelog and download links: https://t.co/icC2WMhkym
Simulated API Gateway HTTP APIs in Yulin local AWS simulator. Integrates with simulated Lambdas and simulated Cognito for auth.
https://t.co/mbxstS6hgu
Yulin AWS simulator includes a simulated DynamoDB for tests and local development. Tables are held in memory, and every operation is authorized by simulated IAM.
https://t.co/O97rvQjTDo
@nitayneeman This looks like it might be useful for situations where we'd like to defer side-effects from loading the module until after we've had a chance to do some alteration first (common in test mocking libraries, for example). Does the eager loading prevent that, though?
Yulin AWS simulator includes a simulated SQS for tests and local development.
Messages are held in memory, hidden and released on the simulation’s own clock, and every operation is authorized by simulated IAM. Messages can be consumed by simulated Lambda functions.
https://t.co/bjkhnSw3jc
Vite 8.2 is out 🚀
• Top-level `input` option: No need to use `build.rolldownOptions`
• Warnings for config features the native loader can't handle yet
• PostCSS config type export for type-safe configs
• Dev URLs now labeled by their interfaces
https://t.co/xJR0baP0hd
Yulin includes a simulated Cognito user pool directory for tests and local development. Pools and their app clients are held in memory, and every operation is authorised by simulated IAM.
https://t.co/92ePCRcLpC
Keep test state inside each test case.
If we're not careful, test setup can inadvertently develop into fixture hell. One way to mitigate that is to keep test data setup cheap and independent inside each test case.
https://t.co/7wbcFw6iSv
New AsyncMappedFactory in the kensio/part-factory library
AsyncMappedFactory covers test values that take a promise to produce, such as an entity that has to be created in a database or a client. It applies the overrides to the input defaults, then passes the completed input to a mapping function that returns a promise for the output.
https://t.co/By2AddczeX