Docs

Quickstart

Step 1.

Add the @internalstack/server dependency to your project

pnpm add @internalstack/server

Step 2.

Visit https://internalstack.com and create your free account.

Generate your API key.

Step 3.

Visit the app's hosted link and run:

server.ts
import { internalStack } from '@internalstack/server'

const server = await internalStack('live_psk_5b2d902f24a057349d9f2d1c385fef7c59')

server.statefulSession(async(io, { user, sessionId }) => {
  const note = await io.input.text('Note')
  console.log(user, 'says: ', note)
  // e.ripley@internalstack.com says: Hello World!
})