Create-a-bundle
Pentru a strânge laolaltă un sistem, aveţi nevoie să apelați la bundle metoda runtime componente:
const system = runtime.system('example02');
system.on('start', () => console.log('Hello world !'));
system.start();
// bundle the system
// all the code will be exported
console.log(runtime.bundle());
Version compatibility
Remember that the example works both on server and browser.