frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

React Meta-Framework Feels Broken, Here's Why

https://rwsdk.com/blog/your-react-meta-framework-feels-broken
22•dthyresson•1y ago

Comments

dthyresson•1y ago
A new blog post argues that today’s React meta-frameworks like Next.js and Remix are too abstract and “feel broken,” adding complexity through magic and indirection. It introduces RedwoodSDK as a simpler, more transparent alternative that prioritizes native web APIs and production-parity development.
codingdave•1y ago
You don't need to (and should not) add a Tl;dr comment when you post something. If you want to tell the story of how you came up with an idea, do a "Show HN". That is the correct way to self-promote on HN.
dthyresson•1y ago
That wasn't my intent. I haven't used HN much. Will do next time. Thx!
pistoriusp•1y ago
I'm the author of this article, and this is the second time I've built a framework. I co-created RedwoodJS with Tom Preston-Werner several years ago - and we came up with some novel ideas, but I had a nagging feeling that something wasn't right.

A failed-startup and a kid later... and I'm back. I couldn't let go of the original vision of RedwoodJS, but I wanted to start from scratch. So we built RedwoodSDK, which is a React framework for Cloudflare. It starts as a Vite Plugin that gives you server-side-rendering, RSC, streaming, and realtime capabilities.

Our standards based route feels invisible, with simple pattern matching, middleware and interrupters. You receive a request and return a response. You own every byte over the wire.

There's zero magic. Just TypeScript, modules, functions, values, and types.

chipgap98•1y ago
Aren't the "defineApp" and "route" methods in rwsdk also magic? It feels like rwsdk is just being more deliberate about when and where to introduce those magic functions.

I'm a big fan of rwsdk so far. Thanks for building!

pistoriusp•1y ago
Nope! They just return standard JavaScript.

A typical worker looks something like this:

    export default {
        fetch({ request }) {
          return new Response('ok')
        } 
    }

DefineApp just wraps that initial entry point into something that allows us to run middleware, match the router, and render out the page or the response object.

Love that you're a fan! Remember... No magicians allowed here.

gadfly361•1y ago
I think a notable difference is with one, you can read the code in the file and understand what it will return. With others, you need to read the code and then do a mental join of the framework's conventions to know what it'll return.

Meta plans AI pendant, 'wearables for work' in hardware boost

https://economictimes.indiatimes.com/tech/technology/meta-plans-ai-pendant-wearables-for-work-in-...
1•jeffufl•2m ago•1 comments

Viral OnlyFans Model Kamryn Renae Rescued Off Mount Whitney Hike

https://www.sfgate.com/national-parks/article/mount-whitney-kamryn-renae-22282534.php
1•carabiner•3m ago•0 comments

EvoGraph: Hybrid Directed Graph Evolution Toward Software 3.0

https://arxiv.org/abs/2508.05199
1•jerlendds•5m ago•0 comments

US judiciary asked to adopt rule to curb fake AI-generated cases in filings

https://www.reuters.com/legal/government/us-judiciary-asked-adopt-rule-curb-fake-ai-generated-cas...
3•droidjj•9m ago•0 comments

The Pope Disrupts Silicon Valley

https://www.ft.com/content/e98d7451-19ee-472e-9b92-8938eab0e205
1•1vuio0pswjnm7•10m ago•0 comments

I made a CPU only spiking neuron network lib that comes pretty close to PyTorch

https://huggingface.co/etoxin/neuronguard-wikipedia-classifier
2•etoxin•10m ago•1 comments

Hackathon – winner gets YC interview

https://events.ycombinator.com/conversational-ai-hackathon-2026
1•subh_cs•11m ago•0 comments

Earliest evidence for invasive mitigation of dental caries by Neanderthals

https://journals.plos.org/plosone/article?id=10.1371%2Fjournal.pone.0347662
1•tambourine_man•17m ago•0 comments

From Benchmarketing to Benchmaxxing

https://www.typedef.ai/blog/from-benchmarketing-to-benchmaxxing-what-40-years-of-database-evals-c...
1•cpard•18m ago•0 comments

Automate your version control with, GitMo

https://github.com/KyleBenzle/GitMo
1•Hilliard_Ohiooo•21m ago•1 comments

DeepSWE blows up AI coding leaderboard, crowns GPT-5.5, + ClaudeOpus loophole

https://venturebeat.com/technology/deepswe-blows-up-the-ai-coding-leaderboard-crowns-gpt-5-5-and-...
3•BriStoller•27m ago•0 comments

Imece – a decentralized AI compute cooperative

https://github.com/jstdv/imece
1•jstdv•28m ago•0 comments

Windows Reactor – React like WinUI 3 framework

https://github.com/microsoft/microsoft-ui-reactor
1•rexpan•30m ago•0 comments

Llms.txt Examples: Real Patterns for API Docs, Help Centers, and Developer Docs

https://docsalot.dev/blog/llms-txt-examples
1•fazkan•34m ago•0 comments

Prism is a purpose-built, redundant, global broadcasting platform

https://www.prism18.com/
1•petethomas•35m ago•0 comments

Scaling Laws for Agent Harnesses via Effective Feedback Compute

https://arxiv.org/abs/2605.29682
1•veryluckyxyz•36m ago•0 comments

2026 vibe coding tool comparison

https://read.technically.dev/p/2026-vibe-coding-tool-comparison
1•eigenBasis•37m ago•0 comments

AI Isn't Replacing Curious Developers

https://dataengineeringcentral.substack.com/p/ai-isnt-replacing-developers
1•eigenBasis•38m ago•0 comments

Uber and the Bitter Truth About Low AI ROI

1•thegrandidiot•44m ago•0 comments

Make Content That Sells

https://www.profitthreads.com
1•mattmerrick•47m ago•0 comments

After decades risking arrest, South Korea's tattoo artists step into limelight

https://www.bbc.com/news/articles/cg4pwdn6130o
4•breve•49m ago•0 comments

TempleOS WASM

https://templeos.reiko.app/
4•zdgeier•49m ago•0 comments

Perry Compiles TypeScript directly to executables using SWC and LLVM

https://www.perryts.com/
10•0x1997•56m ago•7 comments

OWASP Vulnerableapp

https://github.com/SasanLabs/VulnerableApp
2•preetkaran20•1h ago•1 comments

Should You Automate Your Life?

https://www.newyorker.com/culture/open-questions/should-you-automate-your-life
1•petethomas•1h ago•0 comments

Show HN: VT Code – open-source terminal coding agent in Rust

https://github.com/vinhnx/VTCode
4•vinhnx•1h ago•0 comments

A Famous Math Problem Stumped Humans for 80 Years. AI Just Cracked It

https://www.wsj.com/tech/ai/ai-math-solves-erdos-problem-openai-c4029e84
1•bryan0•1h ago•0 comments

Lessons from Shipping Persistent Memory for AI Agents

https://www.pingcap.com/blog/how-we-built-mem9-agent-memory-product/
1•jinqueeny•1h ago•1 comments

Utiq – The ad tracking of your (European) ISP and how to avoid it

https://korben.info/utiq-identifiant-publicitaire-telcos.html
1•LelouBil•1h ago•0 comments

CLI tool for automating personal data removal requests from broker sites

https://github.com/Enthropic-Data-LLC/data-removal
1•sohocs509•1h ago•1 comments