@mathquis/mkfifo
TypeScript icon, indicating that this package has built-in type declarations

2.1.2 • Public • Published

POSIX mkfifo(3) for NodeJS Build Status

Installation

npm install @mathquis/mkfifo

Example

Sync

var mkfifoSync = require('mkfifo').mkfifoSync;

mkfifoSync('/path/to/fifo', 0600);

Async

var mkfifo = require('mkfifo').mkfifo;

mkfifo('/path/to/fifo', 0600, function(err) {
	/* ... */
});

Readme

Keywords

Package Sidebar

Install

npm i @mathquis/mkfifo

Weekly Downloads

1

Version

2.1.2

License

MIT

Unpacked Size

8.96 kB

Total Files

9

Last publish

Collaborators

  • mathquis