0.1.1-2 • Published 2 months ago

handlers.js v0.1.1-2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

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