Webix JET avoiding node.js

Hi.

Is it possible to use Jet System without node.js server ?
I want to use IIS server.

Thanks

Webix Jet does not require a backend to run normally, so, in that sense, you can use any kind of backend to run the app built with Webix Jet.

If you mean that you would like to run Webix Jet without any kind of bundler, then please refer to the info below:

Webix Jet on its own uses ES6, so it will not work without a transpiler.

If you are only interested in modern browsers with native ES6 support, then it is possible to run the code without the bundler, similar to the way how Jet snippets work (e.g., https://snippet.webix.com/jetmenu ), still it means placing all functionality in a single .js file, which will result in a mess for any non-trivial app.

If you need to implement some very simple functionality, it makes more sense to init Webix components directly instead of using Webix Jet.