Using Webix Jet without Webpack
If you really want to, you can drop Webpack and include Jet source code directly to the page.
npm
contains two versions of Jet JS code:- ES6 in es6/jet.js (used by default),
- ES5 in es5/jet.js (use this).
Once you include es5/jet.js, you will be able to use Jet like:
class MyApp extends webix.jet.JetApp { /* ... */ }
Last modified 1yr ago