# process-once.node **Repository Path**: mirrors_yorkie/process-once.node ## Basic Information - **Project Name**: process-once.node - **Description**: The `pthread_once(3)` binding to the Node.js community. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-23 - **Last Updated**: 2026-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README process-once.node ----------------------------- The `pthread_once(3)` binding to the Node.js community. ### Installation ```sh $ npm install process-once.node --save ``` ### Example ```es6 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