Popularity
0.6
Stable
Activity
0.0
Declining
0
2
0
Code Quality Rank:
L5
Programming language: Java
Tags:
Web Frameworks
Latest version: v0.11.1
Analogweb alternatives and similar packages
Based on the "Web Frameworks" category.
Alternatively, view Analogweb alternatives based on common mentions on social networks and blogs.
-
Finatra
Fast, testable, Scala services built on TwitterServer and Finagle -
Scalatra
Tiny Scala high-performance, async web framework, inspired by Sinatra -
Skinny Framework
:monorail: "Scala on Rails" - A full-stack web app framework for rapid development in Scala -
Socko
A Scala web server powered by Netty networking and AKKA processing. -
youi
Next generation user interface and application development in Scala and Scala.js for web, mobile, and desktop. -
Play Pagelets
A module for the Play Framework to build highly modular applications -
Xitrum
Empty Xitrum project skeleton, like the one created by "rails new"
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
Do you think we are missing an alternative of Analogweb or a related project?
README
Analogweb Framework Netty Plugin
Analogweb application running on Netty 4! Add this plugin to your application classpath them org.analogweb.core.Servers#run enable to boot Netty server.
Quick Start
package org.analogweb.hello;
import org.analogweb.annotation.Route;
import org.analogweb.core.Servers;
@Route("/")
public class Hello {
public static void main(String... args) {
Servers.run();
}
@Route
public String hello() {
// Request GET http://localhost:8080/hello and you should see 'Hello World'
return "Hello World";
}
}