Socket
Socket
Sign inDemoInstall

node-windows

Package Overview
Dependencies
4
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.0-beta.1 to 1.0.0-beta.2

4

lib/daemon.js

@@ -225,3 +225,3 @@ /**

configurable: false,
value: config.abortOnError instanceof Boolean ? config.abortOnError : false
value: config.abortOnError === true ? true : false
},

@@ -431,3 +431,3 @@

configurable: false,
value: process.cwd()
value: config.hasOwnProperty('workingDirectory') || process.cwd()
},

@@ -434,0 +434,0 @@

@@ -128,3 +128,4 @@ module.exports = {

{user: config.logOnAs.account || 'LocalSystem'},
{password: config.logOnAs.password || ''}
{password: config.logOnAs.password || ''},
{allowservicelogon: 'true'}
]

@@ -131,0 +132,0 @@ });

{
"name": "node-windows",
"version": "1.0.0-beta.1",
"version": "1.0.0-beta.2",
"description": "Support for Windows services, event logging, UAC, and several helper methods for interacting with the OS.",

@@ -20,5 +20,2 @@ "keywords": [

"main": "lib/node-windows.js",
"os": [
"win32"
],
"preferGlobal": true,

@@ -25,0 +22,0 @@ "dependencies": {

# node-windows
I no longer have enough time to properly maintain this project and am seeking a new primary maintainer.
![NPM version](https://img.shields.io/npm/v/node-windows?label=node-windows&logo=npm&style=for-the-badge)
![NGN Dependencies](https://david-dm.org/coreybutler/node-windows.svg?style=for-the-badge)
This project has gained traction for two reasons:
[Tweet me (@goldglovecb)](http://twitter.com/goldglovecb) if you need me.
1. It works well on Windows.
1. The same API can be used on macOS and Linux.
---
The ideal maintainer would also support or at least closely work with the maintainer of ([node-mac](https://github.com/coreybutler/node-mac) & [node-linux](https://github.com/coreybutler/node-linux)). Please get in touch if you are interested in taking over.
**Update 2/1/2020**
![NPM version](https://badge.fury.io/js/node-windows.png)
![NGN Dependencies](https://david-dm.org/coreybutler/node-windows.png)
![Build](https://api.travis-ci.org/coreybutler/node-windows.png)
Several PR's that have been outstanding for months (or even years) have been merged (unless there were merge conflicts), which is why this version is tagged as "1.0.0-beta.1", despite the fact v0.1.14 has been used in production for years by over 600,000 processes. I would use the latest version in production apps.
Follow the author on [G+](https://plus.google.com/u/1/111169756342687497578?rel=author)
or [Twitter (@goldglovecb)](http://twitter.com/goldglovecb).
---
This README provides a pretty good overview of what node-windows has to offer, but better
documentation is now available at the [node-windows documentation portal](http://coreybutler.github.io/node-windows).
**Sponsors (as of 2020)**
<table cellpadding="10" cellspacing="0" border="0">
<tr>
<td><a href="https://metadoc.io"><img src="https://github.com/coreybutler/staticassets/raw/master/sponsors/metadoclogobig.png" width="200px"/></a></td>
<td><a href="https://butlerlogic.com"><img src="https://github.com/coreybutler/staticassets/raw/master/sponsors/butlerlogic_logo.png" width="200px"/></a></td>
</tr>
</table>
---
# node-windows
This is a standalone module, originally designed for internal use in [NGN](http://github.com/thinkfirst/NGN).
However; it is capable of providing the same features for Node.JS scripts
independently of NGN.
This is a standalone module, originally designed for internal use in [NGN](http://github.com/thinkfirst/NGN). However; it is capable of providing the same features for Node.JS scripts independently of NGN.
For alternative versions, see [node-mac](http://github.com/coreybutler/node-mac)
and [node-linux](http://github.com/coreybutler/node-linux)
For alternative versions, see [node-mac](http://github.com/coreybutler/node-mac) and [node-linux](http://github.com/coreybutler/node-linux).

@@ -90,2 +92,3 @@

]
//, workingDirectory: '...'
});

@@ -92,0 +95,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc