Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/badgerati/pode.kestrel
Kestrel Listener for the Pode PowerShell web server
https://github.com/badgerati/pode.kestrel
hacktoberfest kestrel listener pode powershell webserver
Last synced: 27 days ago
JSON representation
Kestrel Listener for the Pode PowerShell web server
- Host: GitHub
- URL: https://github.com/badgerati/pode.kestrel
- Owner: Badgerati
- License: mit
- Created: 2020-10-09T18:44:02.000Z (about 4 years ago)
- Default Branch: develop
- Last Pushed: 2021-11-13T11:53:16.000Z (almost 3 years ago)
- Last Synced: 2024-05-01T22:07:26.169Z (6 months ago)
- Topics: hacktoberfest, kestrel, listener, pode, powershell, webserver
- Language: C#
- Homepage: https://badgerati.github.io/Pode
- Size: 53.7 KB
- Stars: 5
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.txt
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Pode.Kestrel
This is the Kestrel Listener for the [Pode](https://github.com/Badgerati/Pode) PowerShell web server. The Kestrel listener, at present, only supports HTTP/HTTPS.
> This listener only works with Pode v2.5.0+ and PowerShell 6.0+
## Usage
To begin using the Kestrel listener, you'll first need to install the module:
```powershell
Install-Module -Name Pode.Kestrel
```then, in your main server script, you'll need to import the module and set the `-ListenerType`:
```powershell
Import-Module -Name Pode.KestrelStart-PodeServer -ListenerType Kestrel {
# endpoints, routes, etc
}
```and that's it!