https://github.com/maxnatamo/paracord
An HTTP server implementation in .NET Core 7
https://github.com/maxnatamo/paracord
dotnet dotnet-core hacktoberfest http http-server web-framework
Last synced: about 2 months ago
JSON representation
An HTTP server implementation in .NET Core 7
- Host: GitHub
- URL: https://github.com/maxnatamo/paracord
- Owner: maxnatamo
- License: mit
- Created: 2023-04-12T17:26:38.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-09T19:34:22.000Z (over 2 years ago)
- Last Synced: 2025-08-01T01:39:47.750Z (11 months ago)
- Topics: dotnet, dotnet-core, hacktoberfest, http, http-server, web-framework
- Language: C#
- Homepage: https://maxnatamo.github.io/Paracord/
- Size: 380 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
🪢 Paracord
> A homebrew HTTP framework, written in .NET Core 7
# 🪢 Paracord
**Paracord** is an **open-source** web framework for .NET Core / C#.
Because it's made with .NET Core, it is...
- Cross platform,
- easy to containerize,
- easy to extend,
- and more.
As it stands currently, Paracord is still in very *pre-alpha*, so there's no way, nor would we ever recommend, to use the framework in it's current state.
## 🧯 Installation
To use Paracord in a new project, you can use a pre-built template:
```sh
# Download template
dotnet new install Paracord.Templates
# Create new API project
dotnet new paracord-api -o Paracord.Api
```
To use Paracord in an existing project, you can install it using Nuget:
```sh
dotnet add package Paracord --prerelease
```
## 📝 Contributing
If you want to contribute, great! We'd love your help!
For more in-depth information on contributing to the project and how to get started, see [CONTRIBUTING](CONTRIBUTING.md).