├── .gitignore ├── .npmignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── SECURITY.md ├── binding.gyp ├── index.d.ts ├── index.js ├── package.json ├── pipelines └── publish.yml ├── src ├── main.cc ├── mutex.cc └── mutex.h ├── test └── index.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | npm-debug.log 4 | package-lock.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | build 3 | pipelines 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.branchProtection": ["main"] 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-windows-mutex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-windows-mutex/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-windows-mutex/HEAD/SECURITY.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-windows-mutex/HEAD/binding.gyp -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-windows-mutex/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-windows-mutex/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-windows-mutex/HEAD/package.json -------------------------------------------------------------------------------- /pipelines/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-windows-mutex/HEAD/pipelines/publish.yml -------------------------------------------------------------------------------- /src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-windows-mutex/HEAD/src/main.cc -------------------------------------------------------------------------------- /src/mutex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-windows-mutex/HEAD/src/mutex.cc -------------------------------------------------------------------------------- /src/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-windows-mutex/HEAD/src/mutex.h -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-windows-mutex/HEAD/test/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-windows-mutex/HEAD/yarn.lock --------------------------------------------------------------------------------