Skip to content

High performance Node.js webserver with a simple-to-use API powered by uWebsockets.js under the hood.

License

Notifications You must be signed in to change notification settings

armouti/hyper-express

 
 

Repository files navigation

HyperExpress: High Performance Node.js Webserver

Powered by uWebSockets.js

NPM version NPM downloads Language grade: JavaScript GitHub issues GitHub stars GitHub license

Motivation

HyperExpress aims to be a simple yet perfomant HTTP & Websocket Server. Combined with the power of uWebsockets.js, a Node.js binding of uSockets written in C++, HyperExpress allows developers to unlock higher throughput for their web applications with their existing hardware. This can allow many web applications to become much more performant on optimized data serving endpoints without having to scale hardware.

Some of the prominent features implemented are:

  • Simplified HTTP & Websocket API
  • Global & Route-Specific Middlewares Support
  • Modular Routers Support
  • Server-Sent Events Support
  • HTTP & Websocket Streaming Support
  • Performant Multipart File Uploading
  • Global Error/Event Handlers
  • Cryptographically Secure Cookie Signing/Authentication
  • Multiple Host/Domain Support Over SSL
  • ExpressJS API Compatibility Through Shared Methods/Properties
  • TypeScript Types Support

See > [Benchmarks] for performance metrics against other webservers in real world deployments.

Documentation

HyperExpress requires Node.js version 14+ and can be installed using Node Package Manager (npm).

npm i hyper-express
  • See > [Examples & Snippets] for small and easy-to-use snippets with HyperExpress.
  • See > [Server] for creating a webserver and working with the Server component.
  • See > [Router] for working with the modular Router component.
  • See > [Middlewares] for working with global and route-specific Middlewares in HyperExpress.
  • See > [Request] for working with the Request component made available through handlers.
  • See > [Response] for working with the Response component made available through handlers.
  • See > [MultipartField] for working with multipart requests and File Uploading in HyperExpress.
  • See > [SSEventStream] for working with Server-Sent Events based streaming in HyperExpress.
  • See > [Websocket] for working with Websockets in HyperExpress.
  • See > [SessionEngine] for working with cookie based web Sessions in HyperExpress.
  • See > [LiveDirectory] for implementing static file/asset serving functionality into HyperExpress.
  • See > [HostManager] for supporting requests over muliple hostnames in HyperExpress.

Testing Changes

To run HyperExpress functionality tests locally on your machine, you must follow the steps below.

  1. Clone the HyperExpress repository to your machine.
  2. Initialize and pull any submodule(s) which are used throughout the tests.
  3. Run npm install in the root directory.
  4. Run npm install in the /tests directory.
  5. Run npm test to run all tests with your local changes.

License

MIT

About

High performance Node.js webserver with a simple-to-use API powered by uWebsockets.js under the hood.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 99.7%
  • Other 0.3%