
Security News
White House Authorizes Private Companies to Conduct Offensive Cyber Operations
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.
@insforge/sdk
Advanced tools
Official JavaScript/TypeScript client for InsForge Backend-as-a-Service platform
Official TypeScript/JavaScript SDK for InsForge - A powerful, open-source Backend-as-a-Service (BaaS) platform.
npm install @insforge/sdk
Or with yarn:
yarn add @insforge/sdk
import { createClient } from "@insforge/sdk";
const insforge = createClient({
baseUrl: "http://localhost:7130", // Your InsForge backend URL
});
// Sign up a new user
const { data, error } = await insforge.auth.signUp({
email: "user@example.com",
password: "securePassword123",
name: "John Doe", // optional
redirectTo: "http://localhost:3000/sign-in", // optional, recommended for link-based verification
});
// Sign in with email/password
const { data, error } = await insforge.auth.signInWithPassword({
email: "user@example.com",
password: "securePassword123",
});
// OAuth authentication (built-in or custom provider key)
await insforge.auth.signInWithOAuth({
provider: "google", // e.g. built-in: "google", custom: "auth0-acme"
redirectTo: "http://localhost:3000/dashboard",
});
// Get current user (call this during browser app startup)
const { data: currentUser } = await insforge.auth.getCurrentUser();
// Get any user's profile by ID (public endpoint)
const { data: profile, error } = await insforge.auth.getProfile("user-id-here");
// Update current user's profile (requires authentication)
const { data: updatedProfile, error } = await insforge.auth.setProfile({
displayName: "John Doe",
bio: "Software developer",
avatarUrl: "https://example.com/avatar.jpg",
});
// Sign out
await insforge.auth.signOut();
// Resend a verification email
await insforge.auth.resendVerificationEmail({
email: "user@example.com",
redirectTo: "http://localhost:3000/sign-in", // optional, recommended for link-based verification
});
// Verify email with a 6-digit code
await insforge.auth.verifyEmail({
email: "user@example.com",
otp: "123456",
});
// Send password reset email
await insforge.auth.sendResetPasswordEmail({
email: "user@example.com",
redirectTo: "http://localhost:3000/reset-password", // optional, recommended for link-based reset
});
// Code-based reset flow: exchange the code, then reset the password
const { data: resetToken } = await insforge.auth.exchangeResetPasswordToken({
email: "user@example.com",
code: "123456",
});
if (resetToken) {
await insforge.auth.resetPassword({
newPassword: "newSecurePassword123",
otp: resetToken.token,
});
}
For link-based verification and password reset, users click the emailed browser links:
GET /api/auth/email/verify-linkGET /api/auth/email/reset-password-linkThose backend endpoints validate the token first, then redirect the browser to your redirectTo URL.
insforge_status=success|error, insforge_type=verify_email, and optional insforge_errorredirectTo, then show a confirmation message and ask the user to sign in with email and passwordtoken when ready, plus insforge_status=ready|error, insforge_type=reset_password, and optional insforge_error// Insert data
const { data, error } = await insforge.database
.from("posts")
.insert([{ title: "My First Post", content: "Hello World!" }]);
// Query data
const { data, error } = await insforge.database
.from("posts")
.select("*")
.eq("author_id", userId);
// Update data
const { data, error } = await insforge.database
.from("posts")
.update({ title: "Updated Title" })
.eq("id", postId);
// Delete data
const { data, error } = await insforge.database
.from("posts")
.delete()
.eq("id", postId);
// Upload a file
const file = document.querySelector('input[type="file"]').files[0];
const { data, error } = await insforge.storage.from("avatars").upload(file);
// Download a file
const { data, error } = await insforge.storage
.from("avatars")
.download("user-avatar.png");
// Delete a file
const { data, error } = await insforge.storage
.from("avatars")
.remove(["user-avatar.png"]);
// List files
const { data, error } = await insforge.storage.from("avatars").list();
// Invoke an edge function
const { data, error } = await insforge.functions.invoke("my-function", {
body: { key: "value" },
});
// Create and redirect to a Stripe Checkout Session
const { data, error } = await insforge.payments.createCheckoutSession("test", {
mode: "payment",
lineItems: [{ stripePriceId: "price_123", quantity: 1 }],
successUrl: `${window.location.origin}/success`,
cancelUrl: `${window.location.origin}/pricing`,
idempotencyKey: "cart_123",
});
if (!error && data?.checkoutSession.url) {
window.location.assign(data.checkoutSession.url);
}
// Create a subscription checkout for an app billing subject
const { data: subscriptionCheckout } =
await insforge.payments.createCheckoutSession("test", {
mode: "subscription",
subject: { type: "team", id: "team_123" },
lineItems: [{ stripePriceId: "price_monthly_123", quantity: 1 }],
successUrl: `${window.location.origin}/billing/success`,
cancelUrl: `${window.location.origin}/billing`,
});
if (subscriptionCheckout?.checkoutSession.url) {
window.location.assign(subscriptionCheckout.checkoutSession.url);
}
// Let an authenticated customer manage their subscription in Stripe Billing Portal
const { data: portal } = await insforge.payments.createCustomerPortalSession(
"test",
{
subject: { type: "team", id: "team_123" },
returnUrl: `${window.location.origin}/billing`,
},
);
if (portal?.customerPortalSession.url) {
window.location.assign(portal.customerPortalSession.url);
}
// Generate text completion
const { data, error } = await insforge.ai.completion({
model: "gpt-3.5-turbo",
prompt: "Write a hello world program",
});
// Analyze an image
const { data, error } = await insforge.ai.vision({
imageUrl: "https://example.com/image.jpg",
prompt: "Describe this image",
});
For complete API reference and advanced usage, see:
The SDK supports the following configuration options:
const insforge = createClient({
baseUrl: "http://localhost:7130", // Your InsForge backend URL
anonKey: "your-anon-key", // Optional
isServerMode: false, // Optional (set true in SSR/server runtime)
});
For SSR apps, configure isServerMode: true.
In this mode, auth requests use client_type=mobile so auth methods return refreshToken in the response body.
The SDK does not auto-refresh in server mode; your Next.js app should manage refresh token flow.
In server mode, the SDK does not persist session/user state.
Read your access token from cookies in Next.js and pass it as edgeFunctionToken per request.
Your app should write/update cookies itself after login/refresh.
import { createClient } from "@insforge/sdk";
const accessToken = /* read access token from request cookies */ null;
const insforge = createClient({
baseUrl: process.env.INSFORGE_URL!,
isServerMode: true,
edgeFunctionToken: accessToken ?? undefined,
});
The SDK is written in TypeScript and provides full type definitions:
import { createClient, InsForgeClient } from "@insforge/sdk";
const insforge: InsForgeClient = createClient({
baseUrl: "http://localhost:7130",
});
// Type-safe API calls
const response = await insforge.auth.getCurrentUser();
All SDK methods return a consistent response format:
const { data, error } = await insforge.auth.signUp({...});
if (error) {
console.error('Error:', error.message);
console.error('Status:', error.statusCode);
} else {
console.log('Success:', data);
}
The SDK works in all modern browsers that support:
For Node.js environments, ensure you're using Node.js 18 or higher.
We welcome contributions! Please see our Contributing Guide for details.
# Clone the repository
git clone https://github.com/InsForge/insforge-sdk-js.git
cd insforge-sdk-js
# Install dependencies
npm install
# Build the SDK
npm run build
# Run tests
npm test
# Run integration tests
npm run test:integration
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
Built with ❤️ by the InsForge team
FAQs
Official JavaScript/TypeScript client for InsForge Backend-as-a-Service platform
The npm package @insforge/sdk receives a total of 10,328 weekly downloads. As such, @insforge/sdk popularity was classified as popular.
We found that @insforge/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.