• Implement Annotation syntax for creating routers [ status: Working ]

    @Router("/posts")
    @Use("/comments", commentRouter)
    class PostRouter {
        @Get("/")
        postsGetRoute(req, res, next) {
            // fetch posts
        }
    }
    
  • Put it on npm [ status: TODO ]

  • Add PM2 Compatibility [ status: Done ]