Basics
Features
Best Practices
Addon Development
Related Docs
Dark Mode

#Helper Packages

You can access the Addon API from any programming language (or tool such as curl) using its HTTP interface. To make it easier for programming, you can also use a helper package.

#NPM

The static-cms-addon package is available via NPM. This package includes a simple build process for Screens, easy Packaging of your Addon during development, a pre-configured Express server for serving your Addon's Screens and API, callbacks for Events, and intuitive Database syntax.

import cms from 'static-cms-addon'

await cms.queueNotification({body: 'Hello world!'})

Download v1.2.0 here: static-cms-addon.zip.

#Python

A Python package is in development and will be available soon.