@davistran86/node-powershell

4.0.3 • Public • Published

Node-PowerShell

Build Status NPM Version NPM Downloads Coveralls Package Quality Closed Issues Dependencies License  GitHub Stars

Node-PowerShell taking advantage of two of the simplest, effective and easy tools that exist in the today technology world. On the one hand, NodeJS which made a revolution in the world of javascript, and on the other hand, PowerShell which recently came out with an initial open-source, cross-platform version, and by connecting them together, gives you the power to create any solution you were asked to, no matter if you are a programmer, an IT or a DevOps guy.

Installation

$ npm i -S node-powershell
$ yarn add node-powershell

Quick start

const Shell = require('node-powershell');

const ps = new Shell({
  executionPolicy: 'Bypass',
  noProfile: true
});

ps.addCommand('echo node-powershell');
ps.invoke()
.then(output => {
  console.log(output);
})
.catch(err => {
  console.log(err);
});

Documentation

Documentation

PowerShell 6

Microsoft
GitHub

TODO

  • [x] Full pwsh support.
  • [x] New docs & homepage.
  • [x] PSCommand class.
  • [x] CI improvements.
  • [ ] Postinstall script.
  • [ ] Improve error handling.
  • [ ] More examples.
  • [ ] More test + coverage.
  • [ ] Electron + Lambada POC.

License

MIT © Ran Cohen

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 4.0.3
    3
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 4.0.3
    3
  • 4.0.2
    0
  • 4.0.1
    0
  • 4.0.0
    0

Package Sidebar

Install

npm i @davistran86/node-powershell

Weekly Downloads

3

Version

4.0.3

License

MIT

Unpacked Size

52.2 kB

Total Files

37

Last publish

Collaborators

  • davistran86