Currently it's a little bit wordy to get component IDs:
let ballId = world.components.find(info => info.name == "breakout::Ball").id;
It would be cool if we could leverage a JS Proxy to let you do this:
let ballId = world.components.breakout.Ball.id;