The installation documentation seems kind of light. I am trying to get the ball rolling on a little game.
Installing from packages wasn't working, I was able to install Excalibur.js after downloading source on github, then installing it with npm. I don't much about node, but thats what I did.
When I try to run, this is the trace of the error I get.
Core.ts:811 Uncaught TypeError: Cannot read property 'style' of null
Core.ts:811 Engine.setHeightByDisplayMode
Core.ts:829 Engine.initialize
Core.ts:633 Engine
game.js:4 (anonymous function)
Line 4 of game.js is just:
var game = new ex.Engine();
What am I doing wrong?