Skip to main content

Manage Applet Versions

Your Applet can have multiple versions. You can deploy any version of your Applet to any devices, as you need.

Applet version is managed in package.json

package.json
{
"name": "your-applet-name",
"version": "0.0.1",
/* rest of the package.json */

Create a new Applet version

  1. Change the version in the package.json
  2. Build your Applet
  3. Upload to signageOS

Upgrade JS SDK version and Emulator version

JS SDK library is called front-applet. Emulator library is called front-display. Both versions are set in package.json

package.json
{
/* package.json */
"devDependencies": {
"@signageos/front-applet": "^6.1.1",
"@signageos/front-display": "^13.1.1",
/* rest of the package.json */

Update to the latest version of JS SDK by running:

npm i @signageos/front-applet@latest --save

Update to the latest version of the Emulator by running:

npm i @signageos/front-display@latest --save