Backend solutions for your frontend codebase.

Authentication, authorization, monetization and more.

users.js
reset-password.js
contact-us.js
if(hasAccess('users:d'){
<button>Delete User</button>
}

Introduction

About

Backstack is a cloud-based Backend-as-a-Service (BaaS) model in which developers outsource the behind-the-scenes aspects of a web or mobile app.

One of the key aspects of Backstack is that it allows developers to handle multiple layers of functionality at once. It achieves this by pre-compiling numerous settings to produce a streamlined, individualistic session object ready for processing.

Whether you're starting fresh or enhancing an existing project, integration of the Backstack logic is the same.


Features

The platform provides a range of features and processes required in application development.

Authentication

  • Log in
  • Forgot password
  • Sign up

Authorization

  • Session-specific RBAC
  • Multi-domain application environments
  • Configured application feature access

Monetization

  • SaaS application versioning
  • In-app feature integration
  • Account B2B networking with optional revenue sharing
  • Account invoicing and payments

More

  • Account management
  • Multi-user environments
  • Application alerts and user notification management
  • Dynamic tables for custom records management

Intelligent access control

Manage all aspects of application schemas with a single function in your preferred language to handle real-time session authorization values.

if (hasAccess('payment-methods:d')) {
  return <button>Delete Payment Method</button>
}

Simplified endpoints

The entire API is accessed through three distinct categories of logic. Simplifying the thought process while working within your codebase.

/app

Endpoints relating to the current app schema.

GET /app/session
{
  "app": {
    "id": "app_1234567890",
    ...
  },
  "account": {
    "id": "acc_1234567890",
    ...
  },
  "user": {
    "id": "usr_1234567890",
    ...
  },
  "access": {
    "account-users": "crud",
    "payment-methods": "r",
    ...
  },
  ...
}

/account

Endpoints specific to the current session account.

GET /account/users
[
  {
    "id": "usr_1234567890",
    name: "John Doe",
    ...
  },
  ...
]

/user

Endpoints for interaction with the current session user.

GET /user/notification-settings
[
  {
    "id": "ntf_1234567890",
    "title": "Someone logged in to your account."
    "email": true,
    "sms": true,
    "app": false
  },
  ...
]