0.1.5 • Published 3 months ago

@exotjs/exot v0.1.5

Weekly downloads
-
License
MIT
Repository
-
Last release
3 months ago

Exot

Status: currently in Alpha

Exot is a cross-runtime TypeScript framework for building modern, high-performance server applications.

Documentation

Visit exot.dev for documentation.

Supported runtimes

  • Node.js
  • Bun
  • Deno
  • WinterCG compliant systems

Usage

import { Exot } from '@exotjs/exot';

new Exot()
  .get('/', () => 'Hello world')
  .post('/', async ({ json }) => {
    return {
      received: await json(),
    };
  })
  .listen(3000);

License

MIT