Hello everyone,
you guys are doing a really great job and i'm really looking forward to the new dashboard.
I would appreciate if there was a part for manifest PWA configuration for Node-RED Dashboard.
This would support the use of a dashboard/app even better.
By that I mean the HTML part like:
<link rel="manifest" href="manifest.json" />
and the provision of the manifest.json directly via the dashboard.
{
"name": "HackerWeb",
"short_name": "HackerWeb",
"start_url": ".",
"display": "standalone",
"background_color": "#fff",
"description": "A readable Hacker News app.",
"icons": [
{
"src": "images/touch/homescreen48.png",
"sizes": "48x48",
"type": "image/png"
},
{
"src": "images/touch/homescreen72.png",
"sizes": "72x72",
"type": "image/png"
},
{
"src": "images/touch/homescreen96.png",
"sizes": "96x96",
"type": "image/png"
},
{
"src": "images/touch/homescreen144.png",
"sizes": "144x144",
"type": "image/png"
},
{
"src": "images/touch/homescreen168.png",
"sizes": "168x168",
"type": "image/png"
},
{
"src": "images/touch/homescreen192.png",
"sizes": "192x192",
"type": "image/png"
}
],
"related_applications": [
{
"platform": "play",
"url": "https://play.google.com/store/apps/details?id=cheeaun.hackerweb"
}
]
}
The dashboard can be started directly in the operating system as an app via the browser engine.
Source Info:
https://developer.mozilla.org/en-US/docs/Web/Manifest
Here an example of my own Node as a PWA Node-RED Application installed in Edge Browser: