feat: add components

This commit is contained in:
2025-04-04 17:19:07 +08:00
parent 6f494ec9ca
commit c37b9f0ab2
40 changed files with 2088 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
(() => {
var httpserver = require('component-httpserver-ex.js');
parseQueryParameterMap = (httpExchange) => {
return httpserver.parseQueryParameterMap(httpExchange);
};
serveHTTP = (port, handler) => {
return httpserver.serveHTTP(port, handler);
};
})();