OPS
运维
xkkui
这个作者很懒,什么都没留下…
展开
-
【NodeJS】Tricks
查看 Node 所有版本: 查看所有 Node.JS 的版本: https://nodejs.org/dist/index.json 下载到本地: $ curl -O https://nodejs.org/dist/index.json Powershell: # 查询 npm 为 7 版本的对象 PS> $ [System.IO.File]::ReadAllText("./index.json") | ConvertFrom-Json | Where-Object npm -Like "7*"原创 2021-12-23 16:17:01 · 483 阅读 · 0 评论 -
【Windows, PowerShell,Script,SpringBoot】 部署
部署 ps1 script: # Powershell Version 7.1.3 # param 要写在最上面, 相当于一个脚本是一个函数。参数传递放在最上面 # 默认为 $null param ( $projectDirectory, $targetDirectory # [string]$Test=$(throw "Parameter missing: -name Name") ) $targetDirectory = Get-Location # 换行 # Write原创 2021-06-23 16:21:05 · 293 阅读 · 0 评论