惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
Jina AI
Jina AI
C
Check Point Blog
V
V2EX
H
Help Net Security
Microsoft Azure Blog
Microsoft Azure Blog
P
Proofpoint News Feed
A
About on SuperTechFans
D
DataBreaches.Net
腾讯CDC
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
IT之家
IT之家
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
T
The Blog of Author Tim Ferriss
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
云风的 BLOG
云风的 BLOG
MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
博客园_首页
T
Tailwind CSS Blog
M
MIT News - Artificial intelligence
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Celeris: server side Markup Language
Joshua · 2026-06-15 · via DEV Community

A few months ago, I introduced Celeris and shared some of the ideas behind the project. Since then, development has continued, and I wanted to give an update on where things stand today.

What is Celeris?

Celeris is a lightweight web server written in C++ that aims to make server development simpler through declarative configuration.

Rather than writing large amounts of boilerplate code to configure routes, authentication, file handling, and other common server functionality, Celeris allows developers to define much of their server's behavior through an HTML-like configuration language.

The goal is to provide a fast, efficient server while keeping configuration readable and easy to maintain.

Example Configuration

Below is a simplified example to illustrate the idea (the actual syntax may differ as the project evolves):

<route path="/" method="GET">
    <response>Hello World!</response>
</route>

<static path="/assets" directory="./public" />

Instead of writing code to register routes and configure the server programmatically, developers can define their server structure declaratively and focus on building their applications.

Built Around Extensibility

One of the core ideas behind Celeris is that the server should remain lean.

Instead of bundling every possible feature into the core, Celeris follows a plugin-based architecture. Developers can add functionality as needed without increasing the complexity of the base system.

For example:

  • Email functionality can be added through a plugin.
  • Authentication systems can be extended through plugins.
  • You can develop third-party integrations independently.
  • Custom server features can be packaged and shared with others.

This allows projects to remain lightweight while still being highly customizable.

Why I'm Building It

As I've worked with different web frameworks and servers, I've often found myself writing the same setup code repeatedly before getting to the actual application logic.

Celeris is my attempt to reduce that friction.

I wanted something that combined the performance of native C++, a simple and declarative configuration model, a modular plugin ecosystem and flexibility for both small and large projects

Essentially, I started Celeris because I wanted the simplicity of configuring Nginx, the flexibility of a web framework, and the performance of native C++

Current Development

At the moment, I'm actively working on improving concurrency, request handling, and expanding the overall capabilities of the server.

Some of the features currently being developed or planned include:

  • Advanced routing
  • Authentication and authorization
  • Database integration
  • Plugin management
  • Improved concurrency and scalability
  • Developer-friendly tooling

The long-term vision is to build a powerful and approachable web server that gives developers the performance benefits of C++ without sacrificing ease of use.

Looking for Contributors

Open source projects grow through community involvement, and I'm currently looking for people who would like to help shape Celeris.

You don't need to be a C++ expert to contribute. There are many ways to get involved. You can open issues and report bugs, improve documentation, review existing code, suggest features and improvements, contribute code, build plugins, test new functionality and provide feedback

Whether you're an experienced systems programmer or someone looking to make their first open-source contribution, your help would be greatly appreciated.

The project is open source and available on GitHub:

https://github.com/amethystcoder/celeris

Feel free to check it out, open an issue, submit a pull request, or start a discussion.

I'd love to hear your thoughts, feedback, and ideas as Celeris continues to evolve.