All Questions
1 question
1
vote
1
answer
1k
views
Calling open() on a Unix domain socket failed with error "No such device or address"
I'm trying to communicate between NodeJS and C program using named pipes in linux. My server program has written in NodeJS:
'use strict';
const net = require('net');
const pipename = '/tmp/pipe1';
...