Introduction
Aldo
is another library to build web applications for Node.js.
It uses the best parts of Koa
, Express
and Fastify
to make building restful applications fun and easy.
Aldo
's goal is to provide a secure and solid foundation for your projects, a fast execution and a fluent API.
Installation
npm add aldo
Testing
npm test
More tests are comming in the future
Usage
const { Application, Router } = require('aldo')
const router = new Router()
const app = new Application()
router.get('/', () => 'Hello world!')
app.use(router)
app.serve(3000)
To be continued...