- Web endpoints
- File server
- RESTful endpoints
- Redirection
- Rendering templates
- Query and path parameters in URL
-
Create the project folder with
pubspec.yaml
andmain.dart
in it. -
Update project level
pubspec.yaml
:
environment:
sdk: ^2.17.6
dependencies:
qdot: ^0.0.4
-
Create HTML templates named
index.html
andtest.html
. -
Put HTML templates in
{project-name}/templates/
and static files in{project-name}/static/
-
To run project, open terminal in the project folder and run:
dart main.dart
- Optionally:
dart main.dart --host [hostname] --port [port]
- Refer
example.dart
for further usage