Sohu Tech Products
Sohu Tech Products
Mar 12, 2025 · Backend Development

Experimental TypeScript Execution in Node.js 23

Node.js 23’s experimental --experimental-strip-types flag lets developers run TypeScript files directly by stripping type annotations at runtime, eliminating a separate compilation step, but it performs no type checking, so tsc should still be used for safety, making it useful for rapid prototyping while remaining experimental.

JavaScriptNode.jsTypeScript
0 likes · 7 min read
Experimental TypeScript Execution in Node.js 23
Node Underground
Node Underground
Feb 5, 2022 · Backend Development

Node.js 17.5 Brings Built‑in Fetch API: What Developers Need to Know

Node.js v17.5 introduces experimental support for the familiar fetch API—originally a browser‑side HTTP client—by leveraging the Undici library, allowing developers to use a lightweight, standards‑compliant request method without external modules, though it still requires the --experimental-fetch flag to activate.

Fetch APIHTTPNode.js
0 likes · 2 min read
Node.js 17.5 Brings Built‑in Fetch API: What Developers Need to Know