Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kamack38/posh-nvm-completion
🔹 A nvm tab completion for @PowerShell
https://github.com/kamack38/posh-nvm-completion
completion nvm posh powershell powershell-module
Last synced: 3 months ago
JSON representation
🔹 A nvm tab completion for @PowerShell
- Host: GitHub
- URL: https://github.com/kamack38/posh-nvm-completion
- Owner: kamack38
- License: apache-2.0
- Created: 2022-02-09T10:50:16.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-07T18:32:29.000Z (about 2 years ago)
- Last Synced: 2024-05-23T00:30:25.650Z (6 months ago)
- Topics: completion, nvm, posh, powershell, powershell-module
- Language: PowerShell
- Homepage:
- Size: 13.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - kamack38/posh-nvm-completion - 🔹 A nvm tab completion for @PowerShell (PowerShell)
README
# posh-nvm-completion
[![PowerShell Gallery](https://img.shields.io/powershellgallery/v/nvm-completion.svg?style=flat-square)](https://www.powershellgallery.com/packages/nvm-completion/)
[![PowerShell Gallery](https://img.shields.io/powershellgallery/dt/nvm-completion.svg?style=flat-square)](https://www.powershellgallery.com/packages/nvm-completion/)A [nvm](https://github.com/coreybutler/nvm-windows) tab completion for [PowerShell](https://github.com/PowerShell/PowerShell).
## ⚙️ Installation
Install from [PowerShell Gallery](https://www.powershellgallery.com/)
```powershell
Install-Module nvm-completion -Scope CurrentUser
```---
⚠️ If you haven't allowed script execution policy, set your script execution policy to `RemoteSigned` or `Unrestricted`.
```powershell
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
```## 🛂 Usage
You have to import the module to use `nvm-completion`.
Add below command into your PowerShell profile.
```powershell
Import-Module nvm-completion
```Then restart your PowerShell.
Now you can use tab completion with **nvm**.---
⚠️ If you don't have PowerShell profile yet, create it with below command!
```powershell
New-Item -ItemType File $profile
```## Credits
Created using [gluons's](https://github.com/gluons) [yarn-completion](https://github.com/PowerShell-Completion/yarn-completion/)