Skip to content

alexandrepd/dart_backend

Repository files navigation

A server app built using Shelf, configured to enable running with Docker.

This sample code handles HTTP requests to:

GET '/products'

GET '/product/<id>'

DELETE '/product/<id>'

POST '/product'

PUT '/product'

Running the sample

Running with the Dart SDK

You can run the example with the Dart SDK like this:

$ dart run bin/server.dart
Server listening on port 8080

And then from a second terminal:

$ curl http://0.0.0.0:8080/products

Running with Docker

If you have Docker Desktop installed, you can build and run with the docker command:

$ docker build . -t myserver
$ docker run -it -p 8080:8080 myserver
Server listening on port 8080

And then from a second terminal:

$ curl http://0.0.0.0:8080/products

You should see the logging printed in the first terminal:

2021-05-06T15:47:04.620417  0:00:00.000158 GET     [200] /products

About

Dart Rest API using shelf package

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published