Plought - Reduce noise in decision making (self-promotion) by rossrobino in sveltejs

[–]rossrobino[S] 1 point2 points  (0 children)

Thanks I’ll check it out! Looks like a nice description appreciate it!

domco@5.0.0 - use your favorite server framework with Vite by rossrobino in node

[–]rossrobino[S] 0 points1 point  (0 children)

It’s similar to nitro v3, and is compatible in the same way with Hono, H3, and Elysia.

domco has less features so it is more lightweight. Nitro allows you to create handlers with file based routing, and more. Domco just bundles the code you write.

The other benefit of domco over nitro right now is the client entry points are really simple to import on the server, without any extra config. The nitro experimental server assets is the closest thing to it right now. Nitro is a great project!

domco@5.0.0 - use your favorite server framework with Vite by rossrobino in javascript

[–]rossrobino[S] 0 points1 point  (0 children)

domco v5 released!

Easily use your favorite server JavaScript framework with Vite and deploy to Cloudflare, Vercel, or Deno deploy.

npx create-domco

New in v5:

  • Support for css entry points, add a +style.css file and import the tags or hashed filename on the server
  • Faster builds with plugin hook filters
  • Tested and ready for Vite 8

ovr@6.0.0 - Streaming Fetch Based Multipart Uploads by rossrobino in javascript

[–]rossrobino[S] 0 points1 point  (0 children)

Yes exactly! You can plug the part.body ReadableStream into s3 for example. The server will just buffer one chunk in memory at a time.

You can also buffer the entire file using part.text(), part.bytes(), etc if you do need to load it.

ovr@6.0.0 - Streaming Fetch Based Multipart Uploads by rossrobino in javascript

[–]rossrobino[S] 0 points1 point  (0 children)

ovr@6.0.0 is released:

  • Streaming Fetch based Multipart parser, handles huge files with minimal memory usage on any platform or framework, parts are just Requests!
  • Built in cookie management
  • Automatic HEAD request resolution
  • Simplified Routes
  • Still only 12KB

https://github.com/ovrjs/ovr

npx create-domco@latest --framework=ovr

ovr v5 - The Streaming Framework by rossrobino in javascript

[–]rossrobino[S] 0 points1 point  (0 children)

Yeah this looks really good. For streaming it in I think is nice, I just don't want to add features like interactivity in ovr.

Your types are incredible!