Can Webix Jet be used in Meteor?

Using the first example at Page not found - Webix Jet (i.e., GitHub - webix-hub/jet-demos at 01_basic), I placed these files in the “public” folder of a Meteor 1.2.1 project. I did not add any packages (including any Webix packages). I also had to put “/” in front of the file location of each of the header css and js files within index.html to get initial results.

I got a few errors in my Chrome browser:

  1. Uncaught SyntaxError: Unexpected token < (usually doesn’t seem to be a big deal)
  2. You have trailing comma or Null element in collection’s configuration (likely a big deal)
  3. Uncaught TypeError: Cannot read property ‘body’ of undefined (definitely a big deal)

Likely related to these three errors, Chrome showed some variances in its execution:

  1. (includes an extra "/", but nonetheless appears to evaluate correctly.
  2. (instead of "/start" and "/start", they should read "views/start" and "./views/start.js" . . . I believe this is creating an error).
  3. The following code (among several others) is not being added to the body:
Start page
(This is presumably because the code cannot find the "body").

Is it intended that Webix Jet be functional within Meteor?
Has anyone got Webix Jet to work within Meteor 1.2.1?

Thanks in advance for any response!
Jerry

Currently, we can’t guarantee that Webix Jet will work with Meteor.
Meteor uses different logic for code organization and routing. Check

it is the adaptation of the Webix Jet ideas to the Meteor realm.