The Wayback Machine - https://web.archive.org/web/20210505034843/https://github.com/topics/framework
Skip to content
#

Framework

A framework is a reusable set of libraries or classes in software. In an effort to help developers focus their work on higher level tasks, a framework provides a functional solution for lower level elements of coding. While a framework might add more code than is necessary, they also provide a reusable pattern to speed up development.

Here are 9,655 public repositories matching this topic...

brucejo75
brucejo75 commented May 2, 2021

Meteor makes use of the DDP_DEFAULT_CONNECTION_URL environment variable to modify the __meteor_runtime_config__.DDP_DEFAULT_CONNECTION_URL variable in the server.

__meteor_runtime_config_.DDP_DEFAULT_CONNECTION_URL is then transmitted by the server to the clients in the downloaded index files.

This variable is then used by the client to determine where to make the DDP client connection

scrapy
Gallaecio
Gallaecio commented Apr 5, 2021

@apalala reported this issue when a site sends some invalid images, and suggested a fix for the spider middleware:

        image_stream = self.get_images(response, request, info, item=item)
        while True:
            try:
                path, image, buf = next(image_stream)
            except StopIteration:
                break
            except Exception:
                co
nuxt.js
emiliobondioli
emiliobondioli commented Jul 26, 2019

What problem does this feature solve?

Example use case:
A static generated app with thousands of routes, like an e-commerce having a route for each product.
Apart from scheduling nuxt generate to run periodically and generate all static and dynamic routes, it would be nice to have the possibility to generate the static files for a single route, for example in a hook when the related ba

fastapi
tiangolo
tiangolo commented Jun 12, 2020

First check

  • I added a very descriptive title to this issue.
  • I used the GitHub search to find a similar issue and didn't find it.
  • I searched the FastAPI documentation, with the integrated search.
  • I already searched in Google "How to X in FastAPI" and didn't find any information.
  • I already read and followed all the tutorial in the docs and didn't find an answ
symfony
vapor
DaveTCode
DaveTCode commented Apr 19, 2021

Is your feature request related to a problem? Please describe.
As per https://discordapp.com/channels/431917998102675485/435928766812913664/833695763296813107 http apis which return content with Content-Type plain/text hit an Abort.httpDecoder error: Unsupported Media Type when decoding.

e.g.

return req.client.get(address).flatMapThrowing { res in
    try res.content.decode(UInt8.
Wikipedia
Wikipedia