Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 428 Bytes

README.md

File metadata and controls

27 lines (17 loc) · 428 Bytes

ExpressNET

  • Wrapper of expressjs

Fast, Easy, No-Depency

using ExpressNET;
Express app = new Express();

app.get("/", (req, res) => {
    res.send("Hello World");
});

app.listen(3000);

// Or Console.ReadLine(); instead
app.DoNotEndMyConsole();

Installation

Install-Package ExpressNET

Thanks

Special thanks to MattIPv4 and Matt Welke.