npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

diskpart

v1.0.2

Published

Run Windows diskpart scripts in NodeJS

Downloads

49

Readme

diskpart

npm version dependencies Build status

Run Windows diskpart scripts in NodeJS.

Notice this module requires running with admin privileges. Use modules such as windosu to provide elevation if you require that feature.

Example:

var diskpart = require('diskpart');

diskpart.evaluate([ 'rescan' ], function(error, output) {
		if (error) throw error;
		console.log(output);
});

Microsoft DiskPart version 6.3.9600

Copyright (C) 1999-2013 Microsoft Corporation.
On computer: DELL

Please wait while DiskPart scans your configuration...

DiskPart has finished scanning your configuration.

Installation

Install diskpart by running:

$ npm install --save diskpart

Documentation

diskpart.runScript(String scriptPath, Function callback)

Run a diskpart script file.

scriptPath

The path to the script.

callback(error, output)

  • error is a possible error.
  • output a string containing the output of the command.

Notice that if the command outputs to stderr, it will be returned wrapped in an Error instance.

Example:

var diskpart = require('diskpart');

diskpart.runScript('C:\\myDiskpartScript', function(error, output) {
		if (error) throw error;
		console.log(output);
});

diskpart.evaluate(String[] input, Function callback)

Execute a series of diskpart commands.

input

An array of strings containing diskpart commands.

callback(error, output)

  • error is a possible error.
  • output a string containing the output of the command.

Notice that if the command outputs to stderr, it will be returned wrapped in an Error instance.

Example:

var diskpart = require('diskpart');

diskpart.evaluate([ 'rescan', 'list disk' ], function(error, output) {
		if (error) throw error;
		console.log(output);
});

Tests

Run the test suite by doing:

$ gulp test

Contribute

Before submitting a PR, please make sure that you include tests, and that coffeelint runs without any warning:

$ gulp lint

Support

If you're having any problem, please raise an issue on GitHub.

License

The project is licensed under the MIT license.