Is Dart a complete solution for the ultimate web application?

I am completely new to shooting, I have never done any programs in the dart, but I'm curious and have few questions, I understand that the dart can also work on the server side, so this means that this is not only client-side programming (for example , javascript), can we also write server-side code? (Like java)

In this case, when I go to large enterprise level applications, dart depends on any server languages ​​such as Java ?, and what is the level of database support using Dart?

Maybe the question will be what it may or may not do on the Internet.

Thanks in advance.

+4
source share
1 answer

Dart runs servers in a virtual machine. You can run the darter application on a web server, as well as access files on this server. There is a dart: io library that allows you to do this. IO only works with servers. Dart does not need Java or any other language to work. You have Dart VM (serverside) and clientside, your dartcode will be compiled with dart2js in javascript.

There are several database related projects. But from my understanding there is nothing that is really amazing.

Just do a database driver search here: http://blog.dartwatch.com/p/community-dart-packages-and-examples.html

+4
source

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


All Articles