Skip to content
#

micro-framework

Here are 313 public repositories matching this topic...

neiesc
neiesc commented Aug 1, 2020

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
armeria
trustin
trustin commented Dec 31, 2020

A user can easily serve a static file in an annotated service as follows:

@Get("...")
@Head("...")
HttpResponse getFile(ServiceRequestContext ctx) {
    return HttpFile.of(...).asService().serve(ctx, ctx.request());
}

However, it'd be even nicer if a user can do this:

@Get("...")
@Head("...")
HttpFile getFile() {
    return HttpFile.of(...);
}

Improve this page

Add a description, image, and links to the micro-framework topic page so that developers can more easily learn about it.

Curate this topic

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."

Learn more