6 ms·
Node.JS and Deno are both running with V8. fetch() isn't part of the JS standard library, it's a Web API. Deno just made (the good imo) design decision to suppo
by NIckGeek 4y ago
Node.JS and Deno are both running with V8. fetch() isn't part of the JS standard library, it's a Web API. Deno just made (the good imo) design decision to support WebAPIs over something more custom despite the fact that it's not a runtime for web apps.
Server-side WASM is the future for FaaS imo, sandboxing built in and an effective object-capability approach to dependency safety is amazing.
- Xenoamorphous 4y agofetch is also an API in node (last few versions) https://nodejs.org/dist/latest-v18.x/docs/api/globals.html https://nodejs.org/dist/latest-v18.x/docs/api/globals.html
- pjmlp 4y agoHello Java servlets.