https://github.com/treyhay31/PSModuleBuilder
Powershell package management for web developers
https://github.com/treyhay31/PSModuleBuilder
Last synced: 4 months ago
JSON representation
Powershell package management for web developers
- Host: GitHub
- URL: https://github.com/treyhay31/PSModuleBuilder
- Owner: treyhay31
- License: mit
- Created: 2019-08-03T01:34:15.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-06T11:54:51.000Z (over 5 years ago)
- Last Synced: 2024-08-13T07:06:27.428Z (8 months ago)
- Language: PowerShell
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - treyhay31/PSModuleBuilder - Powershell package management for web developers (PowerShell)
README
[](https://dev.azure.com/itreyhayden/PSModuleBuilder/_build/latest?definitionId=1&branchName=master)
# PSModuleBuilder
Just making modules over here... sometimes scripts too.
## Out on the Gallery [here](https://www.powershellgallery.com/packages/PSModuleBuilder)
## Download from here if you don't like galleries
This will download the zipped repository and extract it to all of the modules folders in `$env:PSModulePath`.
```Powershell
(New-Object System.Net.WebClient).DownloadFile("https://github.com/treyhay31/PSModuleBuilder/archive/master.zip", "$($env:UserProfile)\Downloads\module.zip"); $env:PSModulePath -Split ";" | ForEach-Object { Expand-Archive -Path "$($env:UserProfile)\Downloads\module.zip" -Destination "$_\" -Force }
```## Fun Tidbits!
Here are some code samples:
### Modules
```Powershell
code building modules
```### Scripts
```Powershell
code building Scripts
```### NPM-ing
```Powershell
commands for NPM-ing
```## The real docs
Good documentation is always found in the wiki, so here... [our wiki](https://github.com/treyhay31/PSModuleBuilder/wiki)