0.0.21 • Published 12 months ago

@twoojoo/waffle v0.0.21

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

Waffle - A fluent Fastify wrapper that makes HTTP servers stupidly easy

Install

npm i @twoojoo/waffle

Description

Waffle allows you to easily build an HTTP server using Fastyfy with a completely fluent syntax. It supports route types and schemas and all main Fastify features, while fully allowing to interact with the underlying Fastify instance.

It also comes shipped with some useful plugins such as rate limter, cors and json schema parser, to further decrease development time.

It's typescript first. If you provide json schemas (see this example), route types will be automatically inferred, achieving validation and type safety all at once!

Sample

import { Waffle } from "@twoojoo/waffle"

const server = Waffle({ logger: true })
	//all Fastify hooks available (at server, version, prefix or route level)
	.onRequest(async (req, rep) => console.log("1) on request hook"))
	.preParsing(async (req, rep) => console.log("2) pre parsing hook"))
	.preValidation(async (req, rep) => console.log("3) pre validation hook"))
	.preHandler(async (req, rep) => console.log("4) pre handler hook"))
	.preSerialization(async (req, rep) => console.log("5) pre serialization hook"))
	.onSend(async (req, rep) => console.log("6) on send hook"))
	.onError(async (req, rep) => console.log("6) on error hook"))
	.onResponse(async (req, rep) => console.log("6) on response hook"))
	.limiter({max: 1, timeWindow: 60*1000}) 
	.cors({/*..cors options..*/})

server.version(1) //API version management
	.prefix("users") //API resource management through route prefix
	.GET(":id").handler(async (req, rep) =>  /*...route logic..*/) // GET http://localhost:3001/v1/users/:id
	.DELETE(":id").handler(async (req, rep) =>   /*...route logic..*/) // DELETE http://localhost:3001/v1/users/:id

server.version(2)
	.prefix("customers") //prefix specific hooks and limiters
	.limiter({max: 1, timeWindow: 60*1000})
	.onRequest(async (req, rep) => console.log("on request customers hook")) 

	.GET(":id")  // GET http://localhost:3001/v1/customers/:id
	.handler(async (req, rep) =>  /*...route logic..*/)

	.POST()  // POST http://localhost:3001/v1/customers
	.bodySchema(bodySchema) //route json schema both for validation and type safety
	.handler(async (req, rep) =>  console.log(req.body.name)) // <-- autocomplete

server.address("localhost", 3001)
	.listen()

Examples

See examples folder

0.0.20

12 months ago

0.0.21

12 months ago

0.0.17

1 year ago

0.0.18

1 year ago

0.0.19

1 year ago

0.0.16

1 year ago

0.0.15

1 year ago

0.0.14

1 year ago

0.0.13

1 year ago

0.0.12

1 year ago

0.0.11

1 year ago

0.0.10

1 year ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago