Skip to content
/ Cirno Public

Cirno is a simple and lightweight web framework for .NET Standard.

License

Notifications You must be signed in to change notification settings

ravenmk3/Cirno

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

❄️Cirno Project

Cirno is a simple and lightweight web framework for .NET Standard.

Components

  • ✔️ HTTP Abstraction
  • ✔️ Request Handling Pipeline
  • ✔️ Dependency Injection
  • ✔️ Logging
  • ✔️ Simple Routing
  • ⏰ Full Featured Routing
  • ✔️ JSON Web API
  • ⏰ Cookies
  • ⏰ Authentication
  • ⏰ Model Binding
  • ⏰ Validation
  • ⏰ API Documents
  • ⏰ Static File Support
  • ⏰ View Rendering
  • ✔️ Default Http Server
  • ✔️ Bootstrapper
  • ⏰ DotNetty Http Server
  • ⏰ Health Indicators
  • ⏰ Metrics

Sample

    [Route("home")]
    public class HomeController : Controller
    {
        [Get("index")]
        public IResponse Index()
        {
            return this.Text("Hello World!");
        }

        [Get("user")]
        public UserInfo User()
        {
            return new UserInfo
            {
                Id = DateTime.Now.Second,
                Name = Environment.UserName,
                CreatedAt = DateTime.Now
            };
        }
    }

About

Cirno is a simple and lightweight web framework for .NET Standard.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages