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
- Change the version in the package.json
- Build your Applet
- 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