0.2.7 • Published 1 year ago
frontlessjs v0.2.7
Frontless-js
Installation
Install Bun if not installed.
curl -fsSL https://bun.sh/install | bashCreate a directory, and initialize your project.
mkdir myserver
cd myserver
bun initInstall frontlessjs.
bun add frontlessjsHello World
Create a index.ts in your project
// index.ts
import frontless, { type Widget } from "frontlessjs"
import { text } from "frontlessjs/material"
const app = frontless()
app.page("/", async (): Promise<Widget> => {
return text("Hello World!")
})
app.listen(3000)Run your app.
bun index.tsThen visit localhost:3000 in your browser to see the page!
What's next
Doc&Examples: https://www.frontless.dev/