1.1.1 • Published 10 months ago

@seobryn/faster v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

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.
1.1.1

10 months ago

1.1.0

10 months ago

1.0.9

10 months ago

1.0.8

10 months ago

1.0.7

10 months ago

1.0.6

10 months ago

1.0.5

10 months ago

1.0.4

10 months ago

1.0.3

10 months ago

1.0.2

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago