Go to file
186526 fccf33d953
update: 0.1.1-2
2024-03-18 21:07:09 +08:00
.devcontainer Add Deno test supported & RegExp construction at route creation time 2022-07-03 19:15:42 +00:00
.github/workflows update: 0.1.1-2 2024-03-18 21:07:09 +08:00
.vscode Add CI & Deno Supported & Fix a lot of bugs & Webpack for building package 2022-07-02 17:01:40 +00:00
demo Add CI & Deno Supported & Fix a lot of bugs & Webpack for building package 2022-07-02 17:01:40 +00:00
src update: 0.1.1-1 2024-03-18 20:53:13 +08:00
test Add Deno test supported & RegExp construction at route creation time 2022-07-03 19:15:42 +00:00
types Add Txiki.js Adapter. 2022-07-03 11:00:44 +00:00
.gitignore Initial commit 2022-06-28 09:57:00 +08:00
LICENSE Initial commit 2022-06-28 09:57:00 +08:00
README.md Publish v0.1.0 2022-07-04 10:15:51 +00:00
index.ts Add CI & Deno Supported & Fix a lot of bugs & Webpack for building package 2022-07-02 17:01:40 +00:00
jest.config.js Add CI & Deno Supported & Fix a lot of bugs & Webpack for building package 2022-07-02 17:01:40 +00:00
package.json update: 0.1.1-2 2024-03-18 21:07:09 +08:00
tsconfig.json fix types & add bun adapater (WIP) 2022-07-26 08:32:33 +00:00
webpack.config.js fix types & add bun adapater (WIP) 2022-07-26 08:32:33 +00:00
yarn.lock update: 0.1.1-1 2024-03-18 20:53:13 +08:00

README.md

Handlers.js

Handlers.js is a unified and lightweight web application framework for multiple platforms.

import handlerJS from "handlers.js";

const App = new handlerJS();

App.binding(
 "/",
 App.create("ANY", async () => "Hello World!")
);

App.useMappingAdapter();
App.listen(8080);

Installation

# Use Yarn
yarn add handlers.js
# Use NPM
npm install handlers.js