Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/DarqueWarrior/posh-dapr
An improved tab completion for Dapr
https://github.com/DarqueWarrior/posh-dapr
Last synced: 9 days ago
JSON representation
An improved tab completion for Dapr
- Host: GitHub
- URL: https://github.com/DarqueWarrior/posh-dapr
- Owner: DarqueWarrior
- License: mit
- Created: 2020-12-24T19:05:44.000Z (almost 4 years ago)
- Default Branch: trunk
- Last Pushed: 2021-02-08T14:56:15.000Z (almost 4 years ago)
- Last Synced: 2024-05-23T00:30:21.177Z (7 months ago)
- Language: PowerShell
- Size: 104 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- jimsghstars - DarqueWarrior/posh-dapr - An improved tab completion for Dapr (PowerShell)
README
# posh-dapr
posh-dapr provides tab completion that goes beyond that supported by the `dapr completion` command that comes with Dapr.
posh-dapr lets you tab complete sub commands, flags and instance names. It also supports filtered completion. For example, with posh-dapr, PowerShell can tab complete dapr commands like `stop` by type `dapr st` and pressing the tab key twice. If you continue to press tab you will cycle between the `status` and `stop` commands.
posh-dapr can complete instance names for the `stop` command. For example, you can type `dapr stop` and pressing the tab to cycle through all the running instances of dapr.
posh-dapr can complete runtime versions. For example, you can type `dapr init --runtime-version` and pressing the tab to cycle through all the release of the dapr runtime.
## install
```powershell
Install-Module -Name posh-dapr
```Based on work by
- Keith Dahlby,
- Mark Embling,
- Jeremy Skinner,