Reputation: 23
I am having some difficulty understanding dartlang and its uses. Can I use it as a backend as well as a front end or do I implement the back end with nodejs php etc? Also, has anyone tackled user management with dartlang?
Upvotes: 1
Views: 367
Reputation: 21403
You can use Dart on the front end and back end. You can write your own server, or use one that somebody else has written, for instance the Start server. For user management, you can start with one of the Dart database packages (MySQL, PostgreSQL, MongoDB, etc.).
However, the Dart server experience is not currently the most mature. For serious projects, it is probably better to go with a an existing non-Dart solution (as you mentioned, NodeJS, PHP, or any of the many other server solutions).
Until Dart 1.0, the Dart team is focused on the client-side experience, so this is not likely to change in the near future.
Upvotes: 2