NavyKit, formerly known as navy_framework, is a simple, lightweight server routing framework for Ruby that helps build web servers with ease. It provides the core functionalities to route requests and send responses, making it ideal for creating RESTful services or APIs with minimal overhead.
To install NavyKit, you need to use gem.
gem install navykit
If you want to install NavyKit on your Gemfile instead, add the following dependency:
gem 'navykit', '~> 1.0', '>= 1.0.3'
For a live demo, go to navy-demo-app.vercel.app. It covers the basic use of static and dynamic routing.