Code Monkey home page Code Monkey logo

Comments (4)

Fenny avatar Fenny commented on May 1, 2024 5

I have created a simple logger https://github.com/gofiber/fiber/blob/master/middleware/morgan.go, this is just an example on how internal middlewares are build up.

package main

import (
  "github.com/gofiber/fiber"
  "github.com/gofiber/fiber/middleware"
)

func main() {
  app := fiber.New()

  app.Use(middleware.Morgan())
  // app.Use(middleware.Cors())
  // app.Use(middleware.Helmet())
  // app.Use(middleware.Session())
  // app.Use(middleware.CSurf())
  // app.Use(middleware.Limiter())
  // etc...

  app.Get("/", func(c *fiber.Ctx) {
    c.Send("Hello, World!")
  })

  app.Listen(3000)
}

I would like to replicate the following express middlewares for fiber this month:

from fiber.

Fenny avatar Fenny commented on May 1, 2024 3

@koddr, great suggestion. I'm not home right now but I want to finish the middleware structure tomorrow so we can start writing many midware apps.

Regarding the logger idea, it looks like a good tool. I would like a morgan like system for fiber.

I will continue tonight to get the middleware package ready for development.

Middleware plans for feb

  • Helmet (security headers)
  • Morgan (logger)
  • Cors (cors headers)

from fiber.

koddr avatar koddr commented on May 1, 2024 2

@Fenny wow, it's good point ๐Ÿ‘

One little question about naming of logger: can we change/symlinked it? I mean, Morgan for logger it's okay, but not really (for some people, who doesn't know Node.js ecosystem).

Would be great and more understandable โ€” re-name Morgan to Logger and hide info (like easter egg) about it to comments into middleware file ./middleware/logger.go OR create symlink to this function (to have access to both Morgan() and Logger()), If you want to keep this naming.

I know, you have good Node.js background, but sometimes, similar naming (without fallback to understandable) is huge trouble to promote project to all layers of coders around the programming languages (and stacks).

Please, think about it ๐Ÿ˜‰

from fiber.

Fenny avatar Fenny commented on May 1, 2024 2

Agreed ๐Ÿ‘

from fiber.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.