0.5.0 • Published 7 years ago

quart v0.5.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

Fastest, baddest and most experimental HTTP/2 framework for Node.js

Gitter chat Build Status Test Coverage

Installation

Install from npm:

npm install quart --save

Note that Quart requires Node 8.4.0 and above with the --expose-http2 for 8.x.x versions.

Write a Quart Http/2 server

const Quart = require('Quart');
const app = new Quart({
  cert: "", // SSL Cert
  key: "" // SSL Key
});

app.handle('/', async (stream) => "Hello World!");

app.listen(8080);

Features

  • HTTP/2 Streams
  • HTTP/2 Push
  • Multiplexing
  • File serving from fd
  • Async/Await handles
  • Fast router
  • Middleware
  • Static folder serving (planned for 0.5)

Documentation

Refer to Documentation available here or the docs folder.

License

Who doesn't love a MIT license?

0.5.0

7 years ago

0.4.0

7 years ago

0.3.2

7 years ago

0.3.1

7 years ago

0.3.0

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago

0.0.0

9 years ago