Skip to content

seobryn/faster

Repository files navigation

Faster Web Framework

This is a zero dependency framework that was inspired on different web frameworks like express, koa, restify and is made to make things as simple as possible and as Faster as possible.

Installation

Faster requires node.js v.18.19.0 or higher.

$ npm i @seobryn/faster

Hello World Faster

import { Faster } from '@seobryn/faster'

const app = new Faster()

app.get('/', (req, res) => {
    return res.json({
        Hello: "World Faster"
    })
})

app.listen(3210)

Additional Features

If you want to add more, feel free to create a Plugin and send me a PR with the repo link.

  1. Swagger UI for Documentation: @seobryn/swagger-ui-faster

Road map

  • Basic Server creation.
  • HTTP Verbs Implemented.
  • Optional SSL connection.
  • Optional body Parser.
  • Error handling.
  • Routing implementation.
  • Scoped Middleware implementation.
  • Redirections in res API.
  • Event listeners for server events.
  • Universal Middleware implementation.

About

Super Fast Web Framework

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published