npm.io
0.4.1 • Published 6 years ago

windows-mutex

Licence
MIT
Version
0.4.1
Deps
2
Size
6 kB
Vulns
0
Weekly
0
Stars
35
DeprecatedThis package is deprecated
Install scriptsThis package runs scripts during installation (preinstall/install/postinstall)

windows-mutex

Build Status

Expose the Windows CreateMutex API to Node.JS.

Installation

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

npm install --save-optional windows-mutex

Usage

import { Mutex } from 'windows-mutex';

var mutex = new Mutex('my-mutex');
console.log(mutex.isActive());
mutex.release();

Development

Publishing to NPM is automated via CI. As soon as a tag is pushed to the repo, that version will be built and published to NPM.