January 7, 2026

Node SDK and Sample App Now Available

We've released an official Node.js SDK and a sample Next.js application to help you integrate with DoorFlow faster.

Get from zero to working integration in minutes.

typescript
import { DoorFlow } from 'doorflow';

const doorflow = new DoorFlow({
  clientId: process.env.DOORFLOW_CLIENT_ID!,
  clientSecret: process.env.DOORFLOW_CLIENT_SECRET!,
  redirectUri: 'http://localhost:3000/api/auth/callback',
});

const people = await doorflow.people.listPeople();

The SDK handles OAuth, token refresh, and pagination. The sample app shows real patterns — syncing members, managing credentials, mapping groups — running on Next.js 15 with all API calls server-side.

What's included:

  • doorflow on npm — fully typed, handles auth and token refresh automatically
  • Sample app — a working coworking space integration you can clone and adapt
  • DevNotes throughout the UI explaining implementation decisions

Get started:

bash
git clone https://github.com/doorflow/typescript-sample-app
cd typescript-sample-app
npm install
npm run dev