├── README.md ├── hello.cpp ├── hello.sh ├── index.js ├── package.json └── write-to-fifo.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnokes/node-fifo-example/HEAD/README.md -------------------------------------------------------------------------------- /hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnokes/node-fifo-example/HEAD/hello.cpp -------------------------------------------------------------------------------- /hello.sh: -------------------------------------------------------------------------------- 1 | echo "Hello $USER, this is bash" >> testfifo 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnokes/node-fifo-example/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnokes/node-fifo-example/HEAD/package.json -------------------------------------------------------------------------------- /write-to-fifo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccnokes/node-fifo-example/HEAD/write-to-fifo.js --------------------------------------------------------------------------------