nhttp

An Simple web-framework for Deno and Friends.

MIT License

Downloads
4.4K
Stars
88
Committers
7

Bot releases are hidden (Show)

nhttp - 0.2.2

Published by herudi over 3 years ago

  • beforeWrap less logic
nhttp - 0.2.1

Published by herudi over 3 years ago

  • Add beforeWrap
...
app.use(wrapMiddleware(
    [midd1(), midd2()],
    {
        beforeWrap: (rev, res) => {
            // rev.any = fn;
            // res.any = fn;
        }
    }
))
...
nhttp - 0.2.0

Published by herudi over 3 years ago

  • Add Response
...
app.get("/user", ({ response }) => {
    response.send('Hello');
});
...

nhttp - 0.1.1

Published by herudi over 3 years ago

  • Add status to default error.
nhttp - 0.1.0

Published by herudi over 3 years ago

  • Move to RequestEvent in params Handler.
...
app.get("/hello", (rev: RequestEvent) => {...})
...
nhttp - 0.0.6

Published by herudi over 3 years ago

  • Fix handle connection
nhttp - 0.0.5

Published by herudi over 3 years ago

  • Add nest.land
  • Takedown request.pond()
  • Add JsonResponse
...
respondWith(new JsonResponse({ name: 'john' }))
...
nhttp - 0.0.3

Published by herudi over 3 years ago

nhttp - 0.0.2

Published by herudi over 3 years ago

  • Add Body Parser
nhttp - 0.0.1

Published by herudi over 3 years ago