@ereactthohir/core
v1.5.0
Published
Enterprise-grade core framework with caching, sessions, rate limiting, and advanced features
Readme
@ereactthohir/core 🏛️
The core foundation of the EreactThohir framework.
🚀 Features
- High Performance Kernel: Efficient request/response handling.
- Advanced Routing: Express-like routing with middleware support.
- Dependency Injection: Modular service providers.
- Built-in Security: Helmet, CORS, and CSRF support.
- Typed Core: Fully written in TypeScript for the best DX.
📦 Installation
npm install @ereactthohir/core🛠️ Usage
import { Kernel, Route } from '@ereactthohir/core';
Route.get('/', (req, res) => res.json({ hello: 'world' }));
const kernel = new Kernel();
kernel.handle();
kernel.listen(3000);📄 License
Licensed under the MIT License.
