TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Cloud Computing Without Containers

31 pointsby cekabout 5 years ago

2 comments

divbzeroabout 5 years ago
The downside mentioned in the blog post is worth calling out:<p>&gt; No technology is magical, every transition comes with disadvantages. An Isolate-based system can’t run arbitrary compiled code. Process-level isolation allows your Lambda to spin up any binary it might need. In an Isolate universe you have to either write your code in Javascript (we use a lot of TypeScript), or a language which targets WebAssembly like Go or Rust.<p>It’s also worth noting that for JavaScript the Workers Runtime environment [1] is more similar to the browser than to Node.js. Thus you cannot include NPM packages directly, <i>e.g.</i> you could not simply:<p><pre><code> const express = require(&#x27;express&#x27;) </code></pre> [1]: <a href="https:&#x2F;&#x2F;developers.cloudflare.com&#x2F;workers&#x2F;reference&#x2F;apis&#x2F;standard&#x2F;" rel="nofollow">https:&#x2F;&#x2F;developers.cloudflare.com&#x2F;workers&#x2F;reference&#x2F;apis&#x2F;sta...</a> &quot;Workers Runtime APIs&quot;
评论 #22512093 未加载
mahesh_rmabout 5 years ago
Interesting take, and it makes a lot of sense. Is there an open source framework for handling isolates dedicated to serverless functionality out there?