⚡ Lightweight, functional, promise-based powershell wrapper
npm install windows-powershell
- Promise API
- Composable API via
#pipe()
- Converts powershell like objects to json
- Converts pascal case keys to camel case (
LastErrorCode
->lastErrorCode
)
In this example we get the name of regedit.exe
. As you can see we don't need to parse the output since it has already been converted to json.
import { shell, pipe, toJson } from 'windows-powershell'
function process (io) {
const { json, stdout, stderr } = io
// json -> { name: 'regedit.exe' }
// stdout -> raw output from the cli
}
const cmd = pipe('get-itemproperty c:\\windows\\regedit.exe', 'select name')
shell(toJson(cmd)).then(process)
$a = new-object PSObject; $a | add-member name test; $a | add-member version 0.0.1; $a
shell(create({ name: 'test', version: '0.0.1' })).then(logStdout)
name version
---- -------
test 0.0.1
Composing commands allows as to create intermediate values.
$a = 1; $a = 2; echo $a + $b;
shell(compose('$a = 1', '$a = 2', 'echo $a + $b')).then(logStdout)
3
get-wmiobject Win32_LogicalDisk | select name
const cmd = pipe(
'get-wmiobject Win32_LogicalDisk',
'select name'
)
shell(cmd).then(logStdout)
name
----
C:
D:
H:
npm test