1.1.1 • Published 2 years ago

happyx v1.1.1

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

HappyX

for NodeJS

Currently bindings works only on Linux. To use it on Windows - use WSL

Getting Started

Install

npm install happyx

Examples

ECHO Server

import { Server, Request } from "happyx";

const app = new Server();

app.get("/", (req: Request) => {
    return "Hello, world!";
});

app.start();