Skip to content

teocloud/teo-nodejs

Repository files navigation

Teo Node.js

Run Teo server and write custom URL route handlers with Node.js.

Installation

npm install @teocloud/teo

Example

Write with JavaScript:

const { App } = require("@teocloud/teo")

const app = new App()
app.run()

Write with TypeScript:

import { App } from "@teocloud/teo"

const app = new App()
app.run()