Add Web Worker Platform Adapter && Fix module path bug

This commit is contained in:
2022-06-29 20:00:52 +00:00
committed by GitHub
parent bdbb5deda9
commit b3552cb6a2
17 changed files with 4765 additions and 56 deletions

17
README.md Normal file
View File

@ -0,0 +1,17 @@
# Handlers.js
> Handlers.js is a unified and lightweight web application framework for multiple platforms.
```ts
import handlerJS from "./";
const App = new handlerJS();
App.binding(
"/",
App.create("ANY", async () => "Hello World!")
);
App.useMappingAdapter();
App.listen(8080);
```