mirror of
https://github.com/186526/handlers.js
synced 2024-10-13 00:29:43 +00:00
main
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
Description
Languages
TypeScript
87.9%
JavaScript
8.3%
Dockerfile
3.8%