Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# WorkOS standalone SSO + Directory Sync example (Node)
# WorkOS standalone SSO + Directory Sync + Admin Portal example (Node)

An example [Express](https://expressjs.com) + TypeScript app demonstrating **standalone Single Sign-On**, **Directory Sync**, and the **Admin Portal** with the [WorkOS Node SDK](https://github.com/workos/workos-node) — wired into a session the app owns, without AuthKit.

Expand Down Expand Up @@ -35,6 +35,8 @@ Do all of this in your **Staging** environment — it's free, and it includes te
## Configure and run

```sh
git clone https://github.com/workos/sso-standalone-example.git
cd sso-standalone-example
cp .env.example .env # then fill in the values
npm install
npm run dev
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{
"name": "node-enterprise-example",
"name": "sso-standalone-example",
"version": "1.0.0",
"private": true,
"description": "Example Express + TypeScript app for WorkOS standalone SSO, Directory Sync, and the Admin Portal",
"license": "MIT",
"author": "WorkOS",
"repository": {
"type": "git",
"url": "git+https://github.com/workos/sso-standalone-example.git"
},
"type": "module",
"scripts": {
"dev": "tsx watch src/server.ts",
Expand Down