Skip to content

Function Executor

Joshua Jung edited this page Feb 24, 2017 · 1 revision

The function executor (src) is probably the easiest executor to set up and the most commonly used, as it looks quite a bit like a standard Event handler in your normal front-end Javascript application.

controller.addListener('meow', () => {
  console.log('Meow!');
});

By itself, the function executor is not too handy. However, it can make doing basic tasks super easy.