You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue/feedback:
A documentation covers a use case when Dart works as client-side application within browser, but a typical use case and one of the most powerful Dart feature is client-server orientation - this means that Dart can replace say PHP on server side and JavaScript on client side.
So it would be useful to define and describe the following:
Where the entry point file for server-side application must be placed, for example server.dart file? What is relation of server-side entry-point with client-side entry point?
Where packages of the server-side application must be placed that will use (import) other library packages? For example:
app/my_package1
app/my_package2
etc.
or any other directory (conventions required here).
How can we import server-side packages from my entry-point file?
Question of interaction between server side-packages and client side packages. We need to know how server-side packages can interact with client-side packages in Dart.
Interaction between server-side packages using some event system (event package).
Thanks.
The text was updated successfully, but these errors were encountered:
How can we import server-side packages from my entry-point file?
must be replaced with:
How can we import server-side packages from the entry-point file?
I would like also clarify about the 5. item:
Interaction between server-side packages using some event system (event package).
By the 'event' package I mean some package that will provide event system for other packages so that packages will be able to subscribe on some event and a package will be able to trigger some event. May be such 'event' package is not necessary at all but it can be convinient to have working system of interaction between packages out of box.
This issue was originally filed by [email protected]
Issue/feedback:
A documentation covers a use case when Dart works as client-side application within browser, but a typical use case and one of the most powerful Dart feature is client-server orientation - this means that Dart can replace say PHP on server side and JavaScript on client side.
So we need to see how a typical client/server application must look like. The following links:
http://pub.dartlang.org/doc/package-layout.html
http://pub.dartlang.org/doc/glossary.html
don't provide such information. I didn't find any such info on http://dartlang.org too.
So it would be useful to define and describe the following:
app/my_package1
app/my_package2
etc.
or any other directory (conventions required here).
Thanks.
The text was updated successfully, but these errors were encountered: