-
Notifications
You must be signed in to change notification settings - Fork 717
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Tony Sansone
committed
Feb 9, 2024
1 parent
89b98c3
commit bbd114c
Showing
4 changed files
with
123 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
title: "Write HTTP servers" | ||
description: Communicate over the internet | ||
toc: false | ||
prevpage: | ||
url: /tutorials/server/fetch-data | ||
title: Fetch data from the internet | ||
--- | ||
|
||
Here are some resources for writing servers using Dart: | ||
|
||
* Documentation | ||
* [Using Google Cloud][] has information on Google Cloud products | ||
that Dart servers can use, such as Cloud Run. | ||
* [Using Google APIs][] points to resources to help you | ||
use Firebase and Google client APIs from a Dart app. | ||
* Samples | ||
* [A simple Dart HTTP server][simple-sample] | ||
* Uses the [`shelf`][] package. | ||
* Also uses the [`shelf_router`][] and [`shelf_static`][] packages. | ||
* Is deployable on Cloud Run. | ||
* [A Dart HTTP server that uses Cloud Firestore][cloud-sample] | ||
* Uses the Cloud Firestore features in the [`googleapis`][] package. | ||
* Also uses the [`googleapis_auth`][], [`shelf`][], and | ||
[`shelf_router`][] packages. | ||
* Is deployable on Cloud Run. | ||
|
||
[cloud-sample]: https://github.com/dart-lang/samples/tree/main/server/google_apis | ||
[`googleapis`]: {{site.pub-pkg}}/googleapis | ||
[`googleapis_auth`]: {{site.pub-pkg}}/googleapis_auth | ||
[`shelf`]: {{site.pub-pkg}}/shelf | ||
[`shelf_router`]: {{site.pub-pkg}}/shelf_router | ||
[`shelf_static`]: {{site.pub-pkg}}/shelf_static | ||
[simple-sample]: https://github.com/dart-lang/samples/tree/main/server/simple | ||
[Using Google APIs]: /guides/google-apis | ||
[Using Google Cloud]: /server/google-cloud |