1.0.1 • Published 8 years ago

process-once.node v1.0.1

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

process-once.node

The pthread_once(3) binding to the Node.js community.

Installation

$ npm install process-once.node --save

Example

const once = require('process-once.node');
once(() => {
  // run this function once in this process
});

Purposes

  1. this package is for learning how pthread_once works.
  2. this package is experimental and could be replaced with simple call function directly.

License

MIT