SDK

30+ packages covering React, Vue, Next.js, Node.js, and 19 auto-generated API clients.

React

npm install @autional/react @autional/core

Provider component that wraps your app with authentication context:

import { AuthProvider } from '@autional/react';

function App() {
  return (
    
      
    
  );
}

Vue

npm install @autional/vue @autional/core
import { createApp } from 'vue';
import AutionalPlugin from '@autional/vue';

const app = createApp(App);
app.use(AutionalPlugin);
app.mount('#app');

Node.js

npm install @autional/node
import { verifyToken } from '@autional/node';

app.use(async (req, res, next) => {
  const user = await verifyToken(req);
  req.user = user;
  next();
});

All Packages

Browse the full SDK catalog at www.autional.com/sdk or the source on GitHub.