Add the @internalstack/server
dependency to your project
pnpm add @internalstack/server
Visit https://internalstack.com and create your free account.
Generate your API key.
Visit the app's hosted link and run:
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!
})