Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anypackage/pkgx
pkgx provider for AnyPackage
https://github.com/anypackage/pkgx
anypackage linux oneget package-management package-manager pkgx powershell
Last synced: about 1 month ago
JSON representation
pkgx provider for AnyPackage
- Host: GitHub
- URL: https://github.com/anypackage/pkgx
- Owner: anypackage
- License: mit
- Created: 2024-09-15T17:40:42.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-21T18:25:25.000Z (3 months ago)
- Last Synced: 2024-10-20T04:41:26.368Z (2 months ago)
- Topics: anypackage, linux, oneget, package-management, package-manager, pkgx, powershell
- Language: PowerShell
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# AnyPackage.Pkgx
[![gallery-image]][gallery-site]
[![build-image]][build-site]
[![cf-image]][cf-site][gallery-image]: https://img.shields.io/powershellgallery/dt/AnyPackage.Pkgx
[build-image]: https://img.shields.io/github/actions/workflow/status/anypackage/pkgx/ci.yml
[cf-image]: https://img.shields.io/codefactor/grade/github/anypackage/pkgx
[gallery-site]: https://www.powershellgallery.com/packages/AnyPackage.Pkgx
[build-site]: https://github.com/anypackage/pkgx/actions/workflows/ci.yml
[cf-site]: https://www.codefactor.io/repository/github/anypackage/pkgx`AnyPackage.Pkgx` is an AnyPackage provider that facilitates installing `pkgx`
packages.## Requirements
`pkgx` must be installed first. See [pkgx.sh](https://pkgx.sh) for installation
instructions.## Install AnyPackage.Pkgx
```powershell
Install-PSResource AnyPackage.Pkgx
```## Import AnyPackage.Pkgx
```powershell
Import-Module AnyPackage.Pkgx
```## Sample usages
### Find a package
```powershell
Find-Package -Name node
```### Get installed packages
```powershell
Get-Package -Name node
```### Install a package
```powershell
Install-Package -Name node
```### Uninstall a package
```powershell
Uninstall-Package -Name node
```