| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2023-10-08 | 606 Bytes | |
| v3.0.0 source code.tar.gz | 2023-10-08 | 2.7 MB | |
| v3.0.0 source code.zip | 2023-10-08 | 2.7 MB | |
| Totals: 3 Items | 5.4 MB | 0 | |
Changelog
- NodeJS bindings are here! (#157); These bindings now works only on Linux. On Windows you can use WSL. Simple usage (TypeScript): ```typescript import { Server, Request } from "happyx";
const app = new Server("127.0.0.1", 5000);
app.get("/"), (req: Request) => { return "Hello, world!"; });
app.start();
``
Main language is Nim still.
- Sessions (#156);
- Improve component syntax (#155);
- Nim variables now are modifiable inbuildHtml` macro (#154);
Full Changelog: https://github.com/HapticX/happyx/compare/v2.11.6...v3.0.0