🔧 AI Nachrichten Major AI platforms go down in unprecedented simultaneous outage(03.09.2026 um 17:34 Uhr)
🔧 AI Nachrichten ChatGPT, Claude, and Grok Down? Users Report Widespread Outages(03.09.2026 um 19:14 Uhr)
🔧 AI Nachrichten OpenAI Launches GPT-6 Astra, Says We May Have Entered the AGI Era(03.09.2026 um 22:08 Uhr)
🔧 AI Nachrichten Claude Comes to CarPlay as Fifth Major AI Chatbot App(05.09.2026 um 05:31 Uhr)
🔧 AI Nachrichten OpenAI’s GPT-6 Astra Is AGI, Says NVIDIA CEO Jensen Huang(07.09.2026 um 06:31 Uhr)
🔧 AI Nachrichten Blame AI companies for Mac mini and Mac Studio shortage(31.08.2026 um 10:32 Uhr)
🔧 AI Nachrichten Major AI platforms go down in unprecedented simultaneous outage(03.09.2026 um 17:34 Uhr)
🔧 AI Nachrichten ChatGPT, Claude, and Grok Down? Users Report Widespread Outages(03.09.2026 um 19:14 Uhr)
🔧 AI Nachrichten OpenAI Launches GPT-6 Astra, Says We May Have Entered the AGI Era(03.09.2026 um 22:08 Uhr)
🔧 AI Nachrichten Claude Comes to CarPlay as Fifth Major AI Chatbot App(05.09.2026 um 05:31 Uhr)
🔧 AI Nachrichten OpenAI’s GPT-6 Astra Is AGI, Says NVIDIA CEO Jensen Huang(07.09.2026 um 06:31 Uhr)
🔧 AI Nachrichten Blame AI companies for Mac mini and Mac Studio shortage(31.08.2026 um 10:32 Uhr)

🔧 Programmierung 🕛 kürzlich 4 Min Lesezeit
0

Stone.js: your app exists in every runtime, until you run it

↗ Quelle (dev.to)
🗣️ Stimme:
📑 Inhaltsübersicht




The rewrite tax



Count the versions of your last real-world app. There is the Express or Nest version for the server. The handler you extracted and mangled for Lambda. The API routes you re-declared when the frontend moved to Next. And now someone is asking for an MCP server so agents can use it.



Same domain logic. Four incarnations. Every framework you picked made you pay this tax, because every framework has a home runtime and your code belongs to it.



Stone.js starts from the opposite premise: an application is not an object, it is an act. Application = Domain x Context. You write the domain once; the context (server, function, browser, agent) applies itself to your domain at runtime, not the other way around.






Show me



A domain is just classes or functions. No base class, no framework import in your business logic:




CODE
import { Service } from '@stone-js/core'
import { IncomingHttpEvent } from '@stone-js/http-core'
import { Get, Post, EventHandler } from '@stone-js/router'

@Service({ alias: 'tasks' })
export class TaskService {
private readonly items: Task[] = []

list (): Task[] { return this.items }
add (title: string): Task { /* ... */ }
}

@EventHandler('/tasks')
export class TaskController {
private readonly tasks: TaskService
constructor ({ tasks }: { tasks: TaskService }) { this.tasks = tasks }

@Get('/')
list (event: IncomingHttpEvent): Task[] {
return this.tasks.list()
}
}






Where does it run? That is not the domain's problem. It is declared once, at the edge of the app:




CODE
@NodeHttp()       // a Node HTTP server
@AwsLambdaHttp() // an API Gateway handler
@Routing()
@StoneApp({ name: 'tasks' })
export class Application {}






Each decorator is an adapter: it captures the platform's raw event (an IncomingMessage, a Lambda payload), normalizes it into one IncomingEvent, and turns your response back into whatever the platform expects. Your controller never learns which one ran. stone run collapses the superposition into the target you deploy.



Adapters today: Node HTTP, AWS Lambda, Azure Functions, GCP Cloud Functions, Tencent SCF, Alibaba FC, edge/fetch runtimes, browser, CLI, WebSockets. One domain, any of them.






Allergic to decorators? Same parity, no decorators



Every single feature exists in two first-class forms, decorators or plain functions. Not a fallback, a parity contract:




CODE
import { defineEventHandler, defineRoutes } from '@stone-js/router'

const TaskController = ({ tasks }) => ({
list: (event) => tasks.list()
})

export const routes = defineRoutes([
[defineEventHandler(TaskController, 'list'), { path: '/tasks', method: 'GET' }]
])






The decorators are TC39 2023-11 stage 3 (Symbol.metadata), not experimentalDecorators, and there is no reflect-metadata anywhere. ESM only.






The part nobody else does: agent-native



Your app can expose itself to AI agents. In development, stone mcp starts an MCP server that lets your coding agent introspect the app it is working on (routes, services, blueprint, framework knowledge). And the same adapter mechanism that serves HTTP can serve your domain to agents as tools. The fourth rewrite is the one you skip.






Is it real?



Numbers you can verify, not adjectives:




  • 40+ packages under @stone-js/* (MIT), a micro-kernel that depends on exactly 3 of them

  • 99% test coverage, enforced per package; public quality gate on SonarCloud

  • Zero known dependency vulnerabilities

  • 118 documentation pages, a generated API reference, 14 starters

  • The docs site is itself a Stone.js app (SSG mode), dogfooding included






What beta means here



The API is settled enough that I document both paradigms for everything, and unstable enough that your feedback can still bend it. That is exactly the window where trying a framework is the most fun.



I am looking for a dozen pilots: developers, architects, QA. Build something small, break it, tell me everything that hurts. You get direct access to me and founding-tester credit.





Your app exists in every runtime. Until you run it.



Happy Entanglement. 😎

Vollständiger Original-Bericht
Ausführliche Details, Code-Beispiele & Hersteller-Stellungnahme auf dev.to.
↗ Original-Artikel auf dev.to lesen
Wie bewertest du diesen Beitrag?
1 Klick Feedback
Teilen mit Netzwerk & Team:

Community-Analysen & Experten-Meinungen 0

Verfasse deine eigene Analyse, teile Workarounds oder diskutiere diesen Vorfall im Blog.
Noch keine Community-Analyse verfasst. Markiere einen Textabschnitt oder klicke oben auf Eigene Analyse verfassen“!
Community Pulse: Relevanz-Einschätzung
1 Klick Experten-Votum
🔴 Akute Relevanz 0%
🟡 In Evaluierung 0%
🟢 Keine Auswirkung 0%
Spannende Innovation 0%
Verwandte Story-Cluster & Quellen (Vektor-KI)
Port 8095 Engine
3 Quellen
GPT-6 Astra Release Today? OpenAI’s Next Major AI Model Is Almost Here
1 Quelle
Apple accuses OpenAI of destroying evidence as trade-secrets fight intensifies
1 Quelle
Major AI platforms go down in unprecedented simultaneous outage
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Stone.js: your app exists in every runtime, until you run it

Thematisch verwandte Begriffe: Stonejs, your, exists, every · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...