@teamvortexsoftware/vortex-express-5-sdk
v0.4.2
Published
Drop-in Express module for Vortex API integration
Downloads
325
Readme
Vortex Express 5 SDK
Drop-in Express integration for Vortex invitations and JWT functionality. Get up and running in under 2 minutes!
Features
Invitation Delivery Types
Vortex supports multiple delivery methods for invitations:
email- Email invitations sent by Vortex (includes reminders and nudges)phone- Phone invitations sent by the user/customershare- Shareable invitation links for social sharinginternal- Internal invitations managed entirely by your application- No email/SMS communication triggered by Vortex
- Target value can be any customer-defined identifier (UUID, string, number)
- Useful for in-app invitation flows where you handle the delivery
- Example use case: In-app notifications, dashboard invites, etc.
🚀 Quick Start
npm install @teamvortexsoftware/vortex-express-5-sdk @teamvortexsoftware/vortex-react-providerEasy Integration (Recommended)
import express from 'express';
import {
createVortexRouter,
configureVortex,
createAllowAllAccessControl,
} from '@teamvortexsoftware/vortex-express-5-sdk';
const app = express();
// Configure Vortex with new simplified format (recommended)
configureVortex({
apiKey: process.env.VORTEX_API_KEY!,
// Required: How to authenticate users (new simplified format)
authenticateUser: async (req, res) => {
const user = await getCurrentUser(req); // Your auth logic
return user
? {
userId: user.id,
userEmail: user.email,
userName: user.userName, // Optional: user's display name
userAvatarUrl: user.userAvatarUrl, // Optional: user's avatar URL
adminScopes: user.isAdmin ? ['autojoin'] : [], // Optional: grant admin capabilities
}
: null;
},
// Simple: Allow all operations (customize for production)
...createAllowAllAccessControl(),
});
// Required middleware
app.use(express.json());
// Add Vortex routes
app.use('/api/vortex', createVortexRouter());
app.listen(3000);That's it! Your Express app now has all Vortex API endpoints.
⚡ What You Get
- JWT Authentication: Secure user authentication with Vortex
- Invitation Management: Create, accept, and manage invitations
- Full Node.js SDK Access: All
@teamvortexsoftware/vortex-node-22-sdkfunctionality - TypeScript Support: Fully typed with IntelliSense
- React Integration: Works seamlessly with
@teamvortexsoftware/vortex-react-provider
📚 API Endpoints
Your app automatically gets these API routes:
| Endpoint | Method | Description |
| -------------------------------------------- | ---------- | --------------------------------------- |
| /api/vortex/jwt | POST | Generate JWT for authenticated user |
| /api/vortex/invitations | GET | Get invitations by target (email/phone) |
| /api/vortex/invitations/accept | POST | Accept multiple invitations |
| /api/vortex/invitations/:id | GET/DELETE | Get or delete specific invitation |
| /api/vortex/invitations/:id/reinvite | POST | Resend invitation |
| /api/vortex/invitation-actions/sync-internal-invitation | POST | Sync internal invitation action |
| /api/vortex/invitations/by-group/:type/:id | GET/DELETE | Group-based operations |
🛠️ Setup Options
Option 1: Complete Router (Easiest)
import express from 'express';
import { createVortexRouter } from '@teamvortexsoftware/vortex-express-5-sdk';
const app = express();
app.use(express.json()); // Required!
app.use('/api/vortex', createVortexRouter());Option 2: Manual Route Registration
import express from 'express';
import { registerVortexRoutes } from '@teamvortexsoftware/vortex-express-5-sdk';
const app = express();
app.use(express.json()); // Required!
// Register with custom base path
registerVortexRoutes(app, '/api/v1/vortex');Option 3: Individual Route Handlers
import express from 'express';
import { createVortexRoutes } from '@teamvortexsoftware/vortex-express-5-sdk';
const app = express();
app.use(express.json()); // Required!
const routes = createVortexRoutes();
// Register individual routes with full control
app.post('/api/vortex/jwt', routes.jwt);
app.get('/api/vortex/invitations', routes.invitations);
app.get('/api/vortex/invitations/:invitationId', routes.invitation.get);
app.delete('/api/vortex/invitations/:invitationId', routes.invitation.delete);
// ... etc⚙️ Configuration
1. Environment Variables
Add to your .env:
VORTEX_API_KEY=your_api_key_here2. Basic Configuration
New Simplified Format (Recommended)
import {
configureVortex,
createAllowAllAccessControl,
} from '@teamvortexsoftware/vortex-express-5-sdk';
configureVortex({
apiKey: process.env.VORTEX_API_KEY!,
// Required: How to authenticate users (new simplified format)
authenticateUser: async (req, res) => {
const user = await getCurrentUser(req); // Your auth logic
return user
? {
userId: user.id,
userEmail: user.email,
userName: user.userName, // Optional: user's display name
userAvatarUrl: user.userAvatarUrl, // Optional: user's avatar URL
adminScopes: user.isAdmin ? ['autojoin'] : [], // Optional: grant admin capabilities
}
: null;
},
// Simple: Allow all operations (customize for production)
...createAllowAllAccessControl(),
});Legacy Format (Deprecated)
The legacy format is still supported for backward compatibility:
configureVortex({
apiKey: process.env.VORTEX_API_KEY!,
authenticateUser: async (req, res) => {
const user = await getCurrentUser(req);
return user
? {
userId: user.id,
identifiers: [{ type: 'email', value: user.email }],
groups: user.groups, // [{ type: 'team', groupId: '123', name: 'My Team' }]
role: user.role, // Optional
}
: null;
},
...createAllowAllAccessControl(),
});3. Lazy Configuration (Advanced)
Use this if your configuration depends on database connections or other async setup:
import { configureVortexLazy } from '@teamvortexsoftware/vortex-express-5-sdk';
configureVortexLazy(async () => ({
apiKey: process.env.VORTEX_API_KEY!,
authenticateUser: async (req, res) => {
// This can make database calls, etc.
const user = await getUserFromDatabase(req);
return user
? {
userId: user.id,
userEmail: user.email,
userName: user.userName, // Optional: user's display name
userAvatarUrl: user.userAvatarUrl, // Optional: user's avatar URL
adminScopes: (await checkUserAdminStatus(user.id)) ? ['autojoin'] : [],
}
: null;
},
...createAllowAllAccessControl(),
}));🔧 Production Security
For production apps, replace createAllowAllAccessControl() with proper authorization:
configureVortex({
apiKey: process.env.VORTEX_API_KEY!,
authenticateUser: async (req, res) => {
/* your auth */
},
// Custom access control
canDeleteInvitation: async (req, res, user, resource) => {
return user?.role === 'admin'; // Only admins can delete
},
canAccessInvitationsByGroup: async (req, res, user, resource) => {
return user?.groups.some(
(g) => g.type === resource?.groupType && g.groupId === resource?.groupId
);
},
// ... other access control hooks
});🎯 Frontend Integration
React: Get User's JWT
import { useVortexJWT } from '@teamvortexsoftware/vortex-react-provider';
function MyComponent() {
const { jwt, isLoading } = useVortexJWT();
if (isLoading) return <div>Loading...</div>;
if (!jwt) return <div>Not authenticated</div>;
return <div>Authenticated! JWT: {jwt.substring(0, 20)}...</div>;
}React: Setup Provider
// In your app root
import { VortexProvider } from '@teamvortexsoftware/vortex-react-provider';
function App() {
return (
<VortexProvider config={{ apiBaseUrl: '/api/vortex' }}>
{/* Your app */}
</VortexProvider>
);
}Manage Invitations
// Get invitations
const response = await fetch('/api/vortex/invitations/by-group/team/my-team-id');
const { invitations } = await response.json();
// Delete invitation
await fetch(`/api/vortex/invitations/${invitationId}`, { method: 'DELETE' });Sync Internal Invitation
If you're using internal delivery type invitations and managing the invitation flow within your own application, you can sync invitation decisions back to Vortex when users accept or decline invitations in your system.
// Sync an internal invitation action (accept or decline)
const response = await fetch('/api/vortex/invitation-actions/sync-internal-invitation', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
creatorId: 'user-123', // The inviter's user ID in your system
targetValue: 'user-456', // The invitee's user ID in your system
action: 'accepted', // "accepted" or "declined"
componentId: 'component-uuid' // The widget component UUID
})
});
const result = await response.json();
// result.processed - Number of invitations processed
// result.invitationIds - Array of processed invitation IDsUse cases:
- You handle invitation delivery through your own in-app notifications or UI
- Users accept/decline invitations within your application
- You need to keep Vortex updated with the invitation status
🔄 Comparison with Next.js SDK
| Feature | Express SDK | Next.js SDK |
| ------------------------ | ---------------------- | -------------------- |
| Setup | createVortexRouter() | Multiple route files |
| Routes | Express Router | Next.js App Router |
| Config | Same API | Same API |
| Access Control | Same API | Same API |
| Frontend Integration | Same React Provider | Same React Provider |
| Deployment | Any Express host | Vercel/Next.js hosts |
📦 Direct SDK Usage
All Node.js SDK functionality is available:
import { Vortex } from '@teamvortexsoftware/vortex-express-5-sdk';
// All Node.js SDK functionality is available
const vortex = new Vortex(process.env.VORTEX_API_KEY!);
const invitations = await vortex.getInvitationsByGroup('team', 'team-123');🛠️ Advanced: Custom Handlers
Need custom logic? Use individual handlers:
import express from 'express';
import { handleGetInvitation, createErrorResponse } from '@teamvortexsoftware/vortex-express-5-sdk';
const app = express();
app.get('/api/custom-invitation/:invitationId', async (req, res) => {
// Add custom validation
const user = await validateUser(req);
if (!user.isAdmin) {
return createErrorResponse(res, 'Admin required', 403);
}
// Use SDK handler
return handleGetInvitation(req, res);
});📋 Requirements
- Express: 5.0.0 or higher
- Node.js: 18.0.0 or higher
- TypeScript: 5.0.0 or higher (for TypeScript projects)
🆘 Troubleshooting
Common Issues
"Request body is empty or not parsed"
- Make sure you're using
app.use(express.json())before registering Vortex routes
Configuration errors
- Ensure you're calling
configureVortex()orconfigureVortexLazy()before starting your server - Check that your
.envhasVORTEX_API_KEY
Authentication Issues
- Verify your
authenticateUserfunction returns the correct format - Check that your authentication middleware is working
- Make sure JWT requests include authentication cookies/headers
TypeScript Errors
- All types are exported from the main package
- Resource parameters are fully typed for access control hooks
📦 What's Included
This SDK re-exports everything from @teamvortexsoftware/vortex-node-22-sdk, so you get:
- ✅
Vortexclass for direct API access - ✅ All invitation management methods
- ✅ JWT generation utilities
- ✅ TypeScript definitions
- ✅ Express optimized route handlers
🔗 Links
Need help? Open an issue or check the Next.js SDK example implementation for reference patterns.
