router
Here are 2,607 public repositories matching this topic...
-
Updated
Jul 3, 2020 - TypeScript
-
Updated
Jul 12, 2020 - JavaScript
-
Updated
Jul 1, 2020 - Java
-
Updated
Jul 2, 2020 - C++
-
Updated
Jun 28, 2020 - Python
-
Updated
Jul 13, 2020 - Go
-
Updated
Jul 16, 2020 - JavaScript
-
Updated
Jul 11, 2020 - TypeScript
Azure Event Hubs is like a managed Kafka service:
Allow existing Apache Kafka clients and applications to talk to Event Hubs without any code changes—you get a managed Kafka experience without having to manage your own clusters.
This suggests that we could wrap the existing kafka sink. I'd prefer that we wrap it since it is techni
-
Updated
Jul 8, 2020 - Go
-
Updated
Jul 2, 2020 - C++
-
Updated
Mar 31, 2020 - JavaScript
Add a config option to specify host:post.
Currently one can only set the port via config option Port just for krakend to use this value as a string.
func NewServer(cfg config.ServiceConfig, handler http.Handler) *http.Server {
return &http.Server{
Addr: fmt.Sprintf(":%d", cfg.Port),
...
}
}
-
Updated
Dec 27, 2018 - Java
-
Updated
Jul 16, 2020 - TypeScript
-
Updated
Jul 8, 2020 - JavaScript
-
Updated
Jun 12, 2020 - Dart
-
Updated
Jul 16, 2020 - Go
Improve this page
Add a description, image, and links to the router topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the router topic, visit your repo's landing page and select "manage topics."
Description
Using the fetch API from WHATWG in Google Chrome, an image upload does not have Content-Type multipart/form-data. Instead, the content type is set to the MIME type (ex:
image/jpeg) with aboundaryparameter. Setting Content-Type explicitly tomultipart/form-datashould result in an error (and it does).How to reproduce
Follow an existing image upload example from