added warn flag for using hyper-express httpEngine

This commit is contained in:
srgooglo 2022-05-13 11:41:30 +02:00
parent d89cce7bf4
commit 8e525606c3

View File

@ -10,6 +10,8 @@ const { serverManifest, outputServerError } = require("./lib")
const HTTPEngines = { const HTTPEngines = {
"hyper-express": () => { "hyper-express": () => {
console.warn("Hyper-Express is not fully supported yet")
const engine = require("hyper-express") const engine = require("hyper-express")
return new engine.Server() return new engine.Server()
}, },