Git Product home page Git Product logo

perfect-time-wrap's Introduction

PerfectTimeWrap

Twitter

Perfect TimeWrap middleware swift is a request logger

Installation

Swift Package Manager

To install PerfectTimeWrap with SPM, add the following lines to your Package.swift.

import PackageDescription

let package = Package(
    name: "XXX",
    dependencies: [
        .Package(url: "https://github.com/Digipolitan/perfect-time-wrap-swift.git", majorVersion: 1)
    ]
)

The Basics

Create a RouterMiddleware and register the TimeWrap middleware as follow

let server = HTTPServer()

let router = RouterMiddleware()

TimeWrap.use(in: router)

router.get(path: "/hello").bind { (context) in
  context.response.setBody(string: "Hello world !").completed()
  context.next()
}

server.use(router: router)

server.serverPort = 8888

do {
    try server.start()
    print("Server listening on port \(server.serverPort)")
} catch PerfectError.networkError(let err, let msg) {
    print("Network error thrown: \(err) \(msg)")
}

When a user access to the route /hello, TimeWrap will log on the console : [INFO] GET /hello 200 OK 0.196 ms

Advanced

It's possible to register a specific handler to log as follow :

TimeWrap.use(in: router, options: .init { info, request, response in
    return "My special formatter \(info.duration())ms on \(request.path)"
 })

When a user access to the route /hello, TimeWrap will log on the console : [INFO] My special formatter 0.150978565216064ms on /hello

Contributing

See CONTRIBUTING.md for more details!

This project adheres to the Contributor Covenant Code of Conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to [email protected].

License

PerfectTimeWrap is licensed under the BSD 3-Clause license.

perfect-time-wrap's People

Contributors

bbriatte avatar

Watchers

 avatar  avatar  avatar

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.