This is a PowerShell module installer that is optimized for high performance and no external dependencies so it can be used as a bootstrap to quickly install and update modules in a declarative fashion.
ModuleFast can be quickly bootstrapped without relying on the built-in PowershellGet package manager
iwr bit.ly/modulefast | iex
Install-ModuleFast ImportExcel
Modulefast is also accessible via the alias imf
once loaded
The bit.ly link will always point to the latest release of ModuleFast by default. In order to avoid breaking changes, you can pin to a specific release. This is recommended when using CI systems such as GitHub Actions to install dependencies but is generally not needed on an interactive basis.
iwr bit.ly/modulefast | iex
Get-Help Install-ModuleFast -Full
This syntax allows you to both load and invoke Install-Modulefast. Any additional arguments you pass to the command are the same as if you provided them as arguments to Install-ModuleFast. The module will automatically unload upon completion.
& ([scriptblock]::Create((iwr 'bit.ly/modulefast'))) -Specification ImportExcel
The bit.ly link will always point to the latest release of ModuleFast by default. In order to avoid breaking changes, you can pin to a specific GitHub release. This is recommended when using CI systems such as GitHub Actions to install dependencies but is generally not needed on an interactive basis.
& ([scriptblock]::Create((iwr 'bit.ly/modulefast'))) -Release 'v0.2.0' -Specification ImportExcel
ModuleFast introduces a shorthand string syntax for defining module specifications. It generally takes the form of <ModuleName><Operator><Version>
. The version supports SemVer 2 and prerelease tags.
The available operators are:
=
: Exact version match. Examples:ImportExcel=7.1.0
,ImportExcel=7.1.0-preview
>
: Greater than. Example:ImportExcel>7.1.0
>=
: Greater than or equal to. Example:ImportExcel>=7.1.0
<
: Less than. Example:ImportExcel<7.1.0
<=
: Less than or equal to. Example:ImportExcel<=7.1.0
!
: A prerelease operator that can be present at the beginning or end of a module name to indicate that prerelease versions are acceptable. Example:ImportExcel!
,!ImportExcel
. It can be combined with the other operators like so: 'ImportExcel!>7.1.0':
: Lets you specify a NuGet version range. Example:ImportExcel:(7.0.0, 7.2.1-preview]
For more information about NuGet version range syntax used with the ':' operator: https://learn.microsoft.com/en-us/nuget/concepts/package-versioning#version-ranges. Wilcards are supported with this syntax e.g. 'ImportExcel:3.2.*' will install the latest 3.2.x version.
ModuleFast also fully supports the ModuleSpecification object and hashtable-like string syntaxes that are used by Install-Module and Install-PSResource. More information on this format: https://learn.microsoft.com/en-us/dotnet/api/microsoft.powershell.commands.modulespecification?view=powershellsdk-7.4.0
Modulefast has extensive Verbose and Debug information available if you specify the -Verbose and/or -Debug parameters. This can be useful for troubleshooting or understanding how ModuleFast is working. Verbose level provides a high level "what" view of the process of module selection, while Debug level provides a much more detailed "Why" information about the module selection and installation process that can be useful in troubleshooting issues.
ModuleFast provides a GitHub Action. Details for usage are on the GitHub Marketplace page.
ModuleFast is supported with AnyPackage, a cross-platform PowerShell unified package management interface. Shorthand specifications are supported. More information is available on the provider page.
& ([scriptblock]::Create((iwr 'bit.ly/modulefast'))) -Specification AnyPackage.ModuleFast
Import-Module AnyPackage.ModuleFast
AnyPackage\Install-Package -provider ModuleFast -Name 'ImportExcel<4','Pester<4'
You can specify a set of ModuleSpecification
hashtables to Install-ModuleFast for explicit version constraints. For instance,
you can have only a very specific version to be installed, or only versions below a certain to be installed as well.
#Installs the latest ImportExcel lower than 7.7.0
& ([scriptblock]::Create((iwr 'bit.ly/modulefast'))) @{ModuleName='ImportExcel';MaximumVersion='7.7.0'}
ModuleFast can read a variety of files for module specifications:
- .ps1 PowerShell Scripts with #Requires comment
- .psm1 PowerShell Modules with #Requires comment
- .psd1 Module Manifest with a RequiredModules property
- .psd1 file with module/version pairs
- .json file with module/version pairs
- .json file with array of Module Specification strings
You can specify one of these files by using the -Path parameter
. If you run Install-ModuleFast
with no arguments, it will search for *.requires.psd1|psm1|json|jsonc files in the current directory to install.
You can specify the -CI
parameter to create a lockfile in the current directory that will pin specific version specifications.
If you commit this to a repository, others who run Install-ModuleFast -CI
will get exactly the modules that were installed
by your installation process, even if newer ones are available that meet the spec. This helps ensure proper
reproducible builds, but ideally you will specify your versions appropriately instead.
ModuleFast installs modules to your LocalAppData/powershell/Modules
folder.
This is the default install folder on Linux however it is not on Windows, so on Windows the
script will automatically update your profile to add this path to your psmodulepath on startup (it will prompt you to do this).
You can alternatively set it as your powershell.config.json
PSModulePath, add it to your PSModulePath another way such as in your profile, or specify -Destination to point wherever you want, such as the classic "Documents" location.
- Given a set of packages, install the packages and their dependencies as fast as possible in a declarative plan/apply incremental approach.* Support a "plan" view that shows what will change before it changes, Terraform-style
- Support a "plan" view that shows what will change before it changes, Terraform-style
- Support a dependencies file that can declaratively define what packages a module should have
- Packages once deployed should be fully compatible with built-in *-Module commands, PSGetv2, and PSGetv3
- Support Third Party NuGet v3 Repositories using HTTPS Basic Auth (PAT Tokens etc.)
- Install requirements for scripts with #Requires statements
- Able to use existing PSResourceGet registrations if NuGet v3 Repositories
Support a "complete" mode that will clean up packages that aren't the latest versions of the specified modules Decided there isn't much value for this if packages are correct
- This is not a replacement for PowerShellGetv3 This is a compliment to the hard work being done there. The focus with PSGetv3 is compatibility, the focus with ModuleFast is speed of installation/update at the expense of backwards compatability.
- It will probably never support nuget v2 repositories, only nuget v3. PowerShell Gallery is supported via
pwsh.gallery
, a nuget v2 -> v3 proxy (though any nuget v2 repo could be supported in this fashion) - It will likely not support local filesystem or fileshares for installation, since those are usually fast enough with PSGet/PSResourceGet. I may add them for more unified dependency resolution.
- Takes your module specifications and builds a declarative dependency tree, following a IaC plan/apply approach to installing modules. By default it will evaluate locally installed modules in all of your configured PSModulePath to determine if an already-installed module meets the criteria.
- Uses a custom HTTPClient and async tasks to build the dependency tree quickly, querying with minimal data possible and using batch queries where possible to optimize for performance. This is all done in native PowerShell, no C# required (though C# would allow for certain operations to be even more parallelizable by chaining tasks).
- Uses HTTP/2 to run all queries in a single TCP conversation where possible (PSGallery supports it)
- For PowerShell Gallery, uses an optimized CloudFlare Worker to resolve dependencies as fast as possible.
This is an example of how fast things can be, with certain assumptions. It is not a replacement for PowerShellGet, which has much broader support for multiple repos, authentication, etc.
It makes a lot of very bad assumptions, most of which are safe for PowerShell Gallery at least
- Nuget v3 Only. PowerShellGet is built for compatibility with PSGetv2, I have no such compatibility restrictions and can build "from scratch"
- Powershell 7+ Only. PowerShellGet has 5.1+ compatibility
- Modules with a particular GUID and version are immutable and never change. This is great for caching purposes, and is true for PSGallery, but may not be true for other galleries.
- It currently has very little error handling and aggressive timeouts, and not recommended for slow or unreliable network connections. It will "fail fast" as much as possible.
- Multipart $batch queries suck, they still only execute server-side in parallel. I wrote a full multipart implementation only to throw it away
- Fiddler and some proxies only supports HTTP/1.1 and can give false positives about how many connections are actually being made. Use wireshark to be sure when testing HTTP/2 and HTTP/3
- `[Dictionary].keys`` is not a stable target at all for task iteration, best to maintain a separate list
- PSGetv3 doesn't follow the nuget server v3 spec of optional params (stuff marked optional will cause psgetv3 to throw if not present)
- Initially the logic would fetch the main page and resolve dependencies by fetching individual versions. Turns out its only barely slower to return all versions of a module in single call, probably because the PSGallery server-side filtering doesnt cache, so we instead fetch all versions of a module in a reduced way from our Cloudflare worker and use that as a cache.
- Parallel dependency lookups (lots of Az dependencies require Az.Account) resulted in lots of duplicate calls for Az.Account. Since all task calls bottleneck through our main async loop logic, we can safely inspect existing dependency calls just before execution to determine if the existing call will satisfy it, and then add the context on to the existing object to prevent the duplicate calls.
This module uses a custom dependency resolution algorithm that selects the newest available modules that satisfy all the
dependency criteria. If a version of a locally installed module satisfies the "latest" criteria of the dependency graph,
it will be used rather than fetching what is newest on the gallery. This can be overriden with the -Update
switch that
will recheck whats available in the remote.
This script will use the latest unstable main commit and configure the instance of Modulefast to use preview.pwsh.gallery
as the default repository (you can still override this with the Source parameter). It supports all the same methods and parameters as normal ModuleFast.
& ([scriptblock]::Create((iwr 'bit.ly/modulefastmain'))) -UseMain
Run .\build.ps1
which will install all prerequisites (using ModuleFast!) and compile/test the package. After running it once, you can simply use Invoke-Build
to start a new build. The module will be output into the Build
Directory by default.