micro-framework
Here are 312 public repositories matching this topic...
-
Updated
Dec 8, 2020 - PHP
-
Updated
Oct 13, 2020 - Java
Add minimalist frameworks for (or others):
- Framework for CSS
- Web Framework for C
- Database framework for PHP
- Frameworks for Front-end JS
- Web framework for Go
- Web framework for Haskell
- Web framework for Java
- Web framework for JavaScript
- Web framework for Lua
- Web framework for Node.js
- Web framework for Perl
- Web framework for PHP
- Web framework for Python
- Web f
In our codebase, we push RequestContext and immediately run some code with try-with-resources.
For example:
try (SafeCloseable ignored = ctx.push()) {
logger.trace(decorate(msg));
}If RequestContext provides run(Runnable) or call(Callable) we can reduce boilerplate code and simplify it.
ctx.run(() -> logger.trace(decorate(msg));This is inspired by g
-
Updated
Dec 8, 2020 - PHP
-
Updated
Nov 29, 2020 - PHP
-
Updated
Dec 8, 2020 - F#
-
Updated
Aug 11, 2020 - Ruby
-
Updated
Aug 24, 2017 - PHP
-
Updated
Dec 14, 2020 - Java
-
Updated
Dec 14, 2020 - PHP
-
Updated
May 15, 2020 - Swift
-
Updated
Dec 13, 2020 - Clojure
-
Updated
Aug 30, 2020 - Swift
-
Updated
Aug 28, 2020 - PHP
-
Updated
Dec 3, 2020 - Python
-
Updated
Dec 13, 2020 - Go
-
Updated
Dec 1, 2020 - C++
-
Updated
Jun 7, 2020 - Swift
-
Updated
Sep 23, 2020 - Swift
-
Updated
Aug 7, 2020 - Python
-
Updated
Dec 11, 2020 - Kotlin
-
Updated
Nov 25, 2020 - C#
-
Updated
Dec 11, 2020 - PHP
-
Updated
Aug 24, 2019 - PHP
-
Updated
Dec 10, 2020 - F#
Improve this page
Add a description, image, and links to the micro-framework topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the micro-framework topic, visit your repo's landing page and select "manage topics."


Add a new Unit Test to request_id_test.go to check that the middleware doesn't change a preexisting X-Request-ID header on the request.
Basically is a test that exercises the false path of this code
https://github.com/labstack/echo/blob/6caec3032be056516e30440d1f5bdb5514ad8ad5/middleware/request_id.go#L51-L54