New: v1.1.0 Released

A Lightweight Web Framework
for

Build fast and scalable web applications with a lightweight, fast framework designed for the modern web.

Simple, Yet Powerful

Write clean, maintainable code with our intuitive API design. Built-in TypeScript support ensures type safety without compromise.

import Aroma from 'aroma.js'

const app = new Aroma();

app.parseJson();

app.get('/', (req,res) => {
  res.json({ message: 'Hello from Aroma.js!' });
});

app.post('/api/data', (req, res) => {
  const body = req.body;
  res.json({ received: body });
});

app.listen(3000, () => console.log('Aroma.js running on port 3000'));

Blazing Fast

Aroma.js is lightweight and optimized for performance, making API requests faster than ever.

Batteries included

Built-in middleware, custom middleware, third-party middleware, and helpers. Batteries included.

Lightweight Yet Powerful

Minimal dependencies to keep things efficient while providing robust functionality.

Developer Friendly

Simple and intuitive API design that enhances productivity and ease of use.