January 7, 2026
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.
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
Get started:
git clone https://github.com/doorflow/typescript-sample-app
cd typescript-sample-app
npm install
npm run dev