Skip to content

Instantly share code, notes, and snippets.

@rozek
Created January 13, 2020 09:48
Show Gist options
  • Save rozek/1841135f333949787c22b57142de25f2 to your computer and use it in GitHub Desktop.
Save rozek/1841135f333949787c22b57142de25f2 to your computer and use it in GitHub Desktop.
Bangle.js: writes App descriptor for "HelWrld"
const Storage = require('Storage');
let AppName = 'HelWrld';
Storage.write('+' + AppName, JSON.stringify({
name: '"Hello, World!" for Bangle.js',
type: 'app',
icon: '*' + AppName,
src: '-' + AppName,
version: '0.0.1',
files: '+'+AppName+',-'+AppName+',*'+AppName
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment