-
Notifications
You must be signed in to change notification settings - Fork 716
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add HTTP libraries #5511
Add HTTP libraries #5511
Conversation
Visit the preview URL for this PR (updated for commit 5a6048a): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice!
src/tutorials/server/httpserver.md
Outdated
* Is deployable on Cloud Run. | ||
Dart resources for writing HTTP servers include: | ||
|
||
## Packages |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These packages shouldn't go here because they are packages for writing clients.
Maybe these should go somewhere on https://dart.dev/tutorials/server/fetch-data
| [characters]({{site.pub-pkg}}/characters) | String manipulation for user-perceived characters (Unicode grapheme clusters). | String.characters, Characters, CharacterRange | | ||
| [http]({{site.pub-pkg}}/http) | A set of high-level functions and classes that make it easy to consume HTTP resources. | delete(), get(), post(), read() | | ||
| [characters]({{site.pub-pkg}}/characters) | Manipulates strings for user-perceived characters (Unicode grapheme clusters). | String.characters, Characters, CharacterRange | | ||
| [cronet_http]({{site.pub-pkg}}/cronet_http) | Provides access to the Android [Cronet](https://developer.android.com/guide/topics/connectivity/cronet/reference/org/chromium/net/package-summary) HTTP client. | | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for this an cupertino_http
, adding the words "using the same interface as package:http
" might make it more clear how they fit in.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that some links are broken but looks good to me!
Adds links to platform-specific HTTP packages. Fixes dart-lang#4175
Adds links to platform-specific HTTP packages. Fixes dart-lang#4175
Adds links to platform-specific HTTP packages. Fixes dart-lang#4175
Adds links to platform-specific HTTP packages.
Fixes #4175