UI for node.js and jquery web

  • Is there node.js (considering a web application) of any preferred user interface structure? Or is it an orthogonal problem using node.js ?
  • jQuery is good, is jQuery UI the most used user interface with jQuery engine? Could you point me to other options?
+4
source share
3 answers

1) Node does not care about the user interface, this is all the server side.

2) JQuery UI is probably the most used user interface with the jQuery engine, although I don't have numbers to support this.

Kendo UI is another good one built on top of jQuery.

jQuery Tools I heard good things, but never used it. It is also built on top of jQuery (obviously).

+3
source

NodeJS was conceived as a server solution, but this did not stop people from trying to create stand-alone solutions for user interfaces. One such solution is Node Webkit , which provides a webkit-based application that uses nodejs to write client applications.

If you are hoping to use NodeJS in the same way as jQuery, then you are looking at the wrong tool to work. NodeJS should be seen as an application platform for JS-based applications.

+2
source

Node.js is not a client web application; it is a javascript runtime for servers. It does not have a graphical interface.

For an alternative to the jQuery user interface, you can look at jQuery Plugins vs UI against some alternative .

0
source

Source: https://habr.com/ru/post/1414224/


All Articles