Background Scripts
This document outlines how to write background scripts for your app and why you might want to do so.
Background scripts are parts of your app that are always run as soon as the Aragon Dapp is opened. This is hugely useful if you want to keep your app up to date every time a user opens your app since you can build out your application state in the background. Furthermore, background scripts create a nice separation of concerns - your background script handles all of the state building and your app front-end is simply presentational.
Setup
First you need to instantiate an instance of the AragonApp
class from @aragon/api
.
Next, you need to specify that your app has a background script. In your manifest.json
file, simply specify the script
key. The value should be the path to your built background script. For example, if our built background script was located at dist/script.js
, we would specify it like so:
Building State
All of the AragonApp
methods are available to you. We highly recommend that you use AragonApp#store
as it handles state caching and events subscriptions for you.
Sharing State
If you use AragonApp#store
then state will be automatically shared with your front-end in real-time (via AragonApp#state
).
Last updated