Skip to main content
CONTENT MANAGEMENT TOOL

Developer‑focused backend. User‑focused frontend.

Root CMS runs locally or in the cloud for a coder-friendly development flow. And it's easy on the eyes for content editors.

Powered by:

Firebase

Root CMS uses Firebase under the hood for authentication, Firestore, cloud storage, and security rules.

WEB UI

Component-centric Page Building.

Schemas map 1:1 with component props. Compose web pages using template components.

SCHEMA FILES

Code-based schema definitions.

Define schemas in TypeScript. Type interfaces are auto-generated. Preview your schema changes locally before going to production.

tsx
// @/collections/BlogPosts.schema.ts

import {schema} from '@blinkk/root-cms';

export default schema.define({
  name: 'BlogPosts',
  fields: [
    schema.string({
      id: 'title',
      label: 'Blog title',
    }),
    schema.richtext({
      id: 'content',
      label: 'Blog content',
    }),
  ],
});
Editor interface showing title and content fields for a blog post
INSTANT PREVIEWS

Headless. But not.

CMS edits are stored in "draft" mode. Preview changes right away side-by-side.

Side-by-side UI showing a preview of the mobile layout for a web page
SCHEDULED PUBLISHING

Go live now. Or whenever.

Developers no longer need to be up at 4AM to push changes live. Content editors can publish urgent updates on their own.

Publishing dialog box showing options to publish "now" or "scheduled" for a future date
OTHER FEATURES

Constantly evolving.

Root CMS is new and features are constantly being added. Check out some of those features below or follow the blog to stay up-to-date with our latest releases.

COLLABORATIVE EDITING

Let's edit together.

The UI responds to collaborative edits, locally and in production.

Screenshot that shows two users editing a page at the same time
Screenshot of the Google Sheets export/import flow for translations.
GOOGLE SHEETS LOCALIZATION

Anyone can localize.

With the ability to export and import strings for translations using Google Sheets, it's so easy that anyone can localize. Simply share the sheet with translators, and when ready, hit the import button.

ACCESS CONTROL

Share with those who need access.

Need to send preview links to legal, translators, and any other stakeholders? Simply share access with them as VIEWERS. They'll be able to preview unpublished content without the ability to edit it.

Screenshot of a sharebox.
Screenshot showing versions of a page, time edited, and a restore button.
VERSION HISTORY

Revert accidental changes.

Deleted something you shouldn't have? Or maybe you just liked the old copy better. Restore to an old state using the Version History.

1
2
3
4
5
6
7
8
9
10
11
12
Breakpoint: