UNPKG
named-mutex
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Cross process named mutex
github.com/CHChang810716/named-mutex-js
CHChang810716/named-mutex-js
named-mutex
/
src
/
test-utils
/
cp.js
5 lines
(4 loc)
•
150 B
JavaScript
View Raw
1
2
3
4
5
const
NamedMutex
=
require
(
'../named-mutex'
)
const
mutex =
new
NamedMutex
(
'testMutex'
)
setTimeout
(
()=>
{},
3000
)
console
.
log
(
`
${mutex.tryLock()}
`
)