Skip to content

Minimal and easy to use web api framework for C#

License

Notifications You must be signed in to change notification settings

ItsMalma/Nastar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nastar

Minimal and easy to use web api framework for C#.

Install

dotnet add package Nastar

Hello World

using Nastar;

var app = new NastarApp()
   .Post("/text", (request) => "Hello, World!")
   .Get("/json", (request) => new { Message = "Hello, World!" });

app.Run();

About

Minimal and easy to use web api framework for C#

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages