- Add filePath to route registration for better traceability
- Restrict HTTP file route matching to method-named files
- Replace engine.map with engine.registers (Set) for endpoint tracking
- Refactor IPC service registration to use engine.registers
- Move plugin initialization before engine.listen
- Delegate route registration to engine.register method
OPTIONS requests are now only handled by this middleware if
`bypassCors` is true, in which case permissive CORS headers are added.
If `bypassCors` is false, OPTIONS requests will proceed to subsequent
middleware instead of returning an empty 204 response.
The `websockets` parameter can now be an object, allowing
`enabled` and `path` to be specified for finer control.
Server startup log now displays the WebSocket path.
Bump version to 1.0.0-a3 and remove unused websocket functionality
server/bootloader/bootWrapper.js is now included in package files
This commit updates hyper-express reference to "he" in README, removes
the unused he-legacy engine and socket.io related dependencies.