Is Start (Dart framework) a server-side startup?

Is start ( Dart server side framework) autoupdate when one of our source code changes (just like PHP)?

Is bulls_eye , bloodless and express too?

or if it is not, is there any third-party Dart structure that can do this (edit the code, then check in the browser without restarting the dart / server program)?

+4
source share
1 answer

Currently, this is not yet possible in Dart. If you change the code, you must restart the application.
I would not expect this to work in the near future. The main feature that allows you to do this is the manipulation of the code at runtime. This is planned, but, as far as I know, has not yet begun.

EDIT
The above function is necessary if you want the code to be updated without losing the current state of the application, but usually this is not so important on the server, because in any case it should be (mostly) non-volatile.

In Dart, there is no need to restart the server application when only part of the client changes.

, , . , (spawnUri) . -- .

+4

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


All Articles