keep application code close to HTTP concerns
A server/less framework built around event-driven routing, composability, and runtime portability.
import { server } from '@stackpress/ingest/http';
const app = server();
app.get('/', (req, res) => {
res.setHTML('<h1>Hello World!</h1>');
});
app.create().listen(3000);Start Here
Choose the way into the framework
Why Use Ingest
Keep one server model while changing route style, plugin structure, and runtime target
compose behavior through plugins instead of a large application container
move between Node HTTP and WHATWG-style runtimes without rewriting your app model
choose the route organization style that fits the project
expose route structure to build or deployment tooling
Reading Path