| Branch | Windows | Windows pwsh | MacOS | Linux |
|---|---|---|---|---|
| main | ||||
| Enhancements |
PSGalleryExplorer is a PowerShell module that extends the search functionality of the PowerShell Gallery by providing additional project information about modules. This enables you to search, explore, and discover PowerShell Gallery modules based on additional criteria.
PSGalleryExplorer is a PowerShell module that extends the search functionality of the PowerShell Gallery by providing additional project information about modules. It enables users to search, explore, and discover PowerShell Gallery modules based on additional criteria that are not available via Find-Module. The module provides various features such as filtering results based on download counts, stars, forks, and repository health metrics like open issues, license, and last updated date. With PSGalleryExplorer, users can easily identify trending and actively developed modules, and explore module repositories directly from the console.
With Find-ModuleByCommand, PSGalleryExplorer now provides even more value to users by enabling them to quickly locate modules that contain specific commands. This enables you to search for modules by function name, even if you do not have the module locally installed.
- Fully cross-platform and can be run on Windows, Linux, and macOS
- Discover modules based on various criteria such as number of downloads, stars, forks, and more
- Get insights into the community health of a module's repository, including information about open issues, license, and last updated date
- Identify modules that are actively being developed by filtering based on their most recent repository update date.
- Compliments existing tools like
Find-Moduleto provide another way to explore modules on the PowerShell Gallery. - Identify up-and-coming or trending modules by comparing search results including and excluding popular and corporate modules
- PSGalleryExplorer provides a detailed, informative output of module results to help you quickly identify prime candidates for further exploration.
Find-ModuleByCommandallows users to search for modules based on a specific command name, even if the module is not installed locally, providing a quick and easy way to locate modules containing the desired functionality.
Documentation for PSGalleryExplorer is available at: https://psgalleryexplorer.readthedocs.io
# Install PSGalleryExplorer from the PowerShell GalleryInstall-Module-Name "PSGalleryExplorer"-Repository PSGallery -Scope CurrentUser#------------------------------------------------------------------------------------------------# import the PSGalleryExplorer moduleImport-Module-Name "PSGalleryExplorer"#------------------------------------------------------------------------------------------------# discover module info by tagFind-PSGModule-ByTag Telegram
#------------------------------------------------------------------------------------------------# discover PowerShell modules by # of Gallery DownloadsFind-PSGModule-ByDownloads
#------------------------------------------------------------------------------------------------# discover the most recently updated modules on repoFind-PSGModule-ByRecentUpdate RepoUpdate
#------------------------------------------------------------------------------------------------# discover the most recently updated modules on the PowerShell GalleryFind-PSGModule-ByRecentUpdate GalleryUpdate
#------------------------------------------------------------------------------------------------# discover PowerShell modules by # of Gallery Downloads# include corporate modules and common/popular modules in results# return top 50Find-PSGModule-ByDownloads -IncludeCorps -IncludeRegulars -NumberToReturn 50#------------------------------------------------------------------------------------------------# discover PowerShell modules by # of repo project starsFind-PSGModule-ByRepoInfo StarCount
#------------------------------------------------------------------------------------------------# discover PowerShell modules that could possibly use some helpFind-PSGModule-ByRepoInfo Issues
#------------------------------------------------------------------------------------------------# discover PowerShell modules by # of repo project subscribersFind-PSGModule-ByRepoInfo Subscribers
#------------------------------------------------------------------------------------------------# discover a set of random modulesFind-PSGModule-ByRandom
#------------------------------------------------------------------------------------------------# discover module info by nameFind-PSGModule-ByName 'PoshGram'#------------------------------------------------------------------------------------------------# Returns a list of modules that contain the command Send-TelegramTextMessageFind-ModuleByCommand-CommandName 'Send-TelegramTextMessage'#------------------------------------------------------------------------------------------------This PowerShell project was created with Catesta.
If you'd like to contribute to PSGalleryExplorer, please see the contribution guidelines.
This project is licensed under the MIT License.

