Xanny Projects Dragon Versions Save

⚡Fast , simple expressive web framework for deno 🦕.

v1.1.6

3 years ago
  • Move httpMiddleware to middleware folder.
  • Move httpRequest, httpResponse, httpMessage to http folder.
  • Move httpRouting to router folder.
  • Add utils folder
  • Fix documentation
  • Fix testing

v1.1.5

3 years ago
  • Remove HttpStatus interface.
  • Rename middleware to HttpMiddleware.

v1.1.4

3 years ago
  • Fix post request keeps loading.
  • Remove match method.
  • Add handleHttpRequest to handle an HTTP request from the Deno server.
  • Add ResponseOutput interface.
  • Fix Documentation.

v1.1.2

3 years ago
  • Add permanentRedirect method to return a 301 status code
  • New Dragon logo
  • Fix Typo examples

v1.1.1

3 years ago
  • Add expectsJson method to quickly determine if the incoming request expects a JSON response.
  • Add prefers method to determine which content type out of a given array of content types is most preferred by the request.

v1.1.0

3 years ago
  • Fix Documentation.
  • Add isHttpError helper function
  • Use end method instead of send

v1.0.9

3 years ago
  • Fix typo.

  • Add build-in middlewares:

    • X-XSS-Protection
    • X-Frame-Options
    • CORSMethodMiddleware

v1.0.8

3 years ago
  • Fix & Improve documentation.
  • Update to Deno 1.6.2
  • Update std to 0.82.0
  • Rename protocol to schemes

v1.0.6

3 years ago
  • Add Handling CORS Requests
  • Redirect the client to another URL with optional response status defaulting to 302

v1.0.4

3 years ago
  • Return HttpStatus.NOTFOUND if no match
  • Fix fallback routes documentation (use Template Literals)
  • Add not Found Example