Skip to content

Latest commit

 

History

History
43 lines (36 loc) · 945 Bytes

README.md

File metadata and controls

43 lines (36 loc) · 945 Bytes

Nudol

Extremely slow, сlumsy, cringe framework for combat helicopters

Focus on debugging this library rather than debugging your own application.

Quick Start

bun add @nudol/core

Features

  • Fragile routing
  • Type Unsafety (all is any)
  • Super-high memory usage (possible memory leaks)
  • Terrible API
  • Second-class TypeScript support. (use js)
  • Breaking changes every day
  • No backward compatibility
  • Doesn't work on any Runtime: Node.js, Deno, Cloudflare Workers, Vercel, AWS Lambda...

Example

import { Nudol } from "@nudol/core"
import React from "react"
import ReactDom from "react-dom/server"

const nudol = new Nudol({
  port: "8088",
  React: React,
  ReactDom: ReactDom,
}) 

nudol.get("/", () => {
  return new Response("Hello world")
})

nudol.notfound([Method.GET, Method.POST], () => {
  return new Response("There's nothing here")
})

nudol.listen()

Documentation

Never...