🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

hipc

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hipc

http ipc server

0.1.1
latest
npm
Version published
Weekly downloads
6
Maintainers
1
Weekly downloads
 
Created
Source

hipc - http ipc

var hipc = require('hipc');

hipc(function (req, res) {
    console.log(req.method, req.url);
    res.end("IPC OK: " + req.url);
}).listen('/tmp/app.socket');

listen options / опции

  • autoClose - close on process exit / закрывать сервер при выходе из процесса
  • chmod - set chmod file after listen / установить chmod после запуска сервера
  • onclose - callback before exit / callback перед выходом
  • path - ipc path / путь к файлу

nginx conf

server {
	listen 80;
	server_name ipc.domain.com;
	location / {
		proxy_pass http://unix:/tmp/app.socket:/;
	}
}

Keywords

ipc

FAQs

Package last updated on 11 Dec 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts