1.0.0 • Published 4 years ago

node-windows-semaphore v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

node-windows-semaphore

Expose the Windows CreateSemaphore API to Node.JS.

Installation

node-windows-semaphore will only compile in Windows machines, so it is advisable to use the --save-optional flag and wrap the require('node-windows-semaphore') call in a try {} catch {} block, in case your code also runs on other platforms.

npm install --save-optional node-windows-semaphore

Usage

const { Semaphore } require("node-windows-semaphore");

var semaphore = new Semaphore("my-semaphore");
semaphore.release();