npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

posix-socket

v1.1.4

Published

POSIX Socket API on nodeJS

Downloads

2,003

Readme

PosixSocket

This npm module makes the POSIX Socket API available to node with minimal changes.

  • sockfd = socket(domain, type, protocol)
  • bind(sockfd, addr)
  • accept(sockfd, addr)
  • connect(sockfd, addr)
  • send(sockfd, buf, len, flags)
  • sendto(sockfd, buf, len, flags, dest_addr)
  • recv(sockfd, buf, len, flags)
  • recvfrom(sockfd, buf, len, flags, src_addr)
  • close(fd)
  • shutdown(sockfd, how)
  • getsockopt(sockfd, level, optname)
  • setsockopt(sockfd, level, optname, optval)

Differences with the POSIX Socket API:

  1. Socket addresses are specified as JavaScript objects. Currently, only three address families are supported:
    • Local/Unix (sockaddr_un): {sun_family:1, sun_path:"path/to/unix-sock.sock"}.
    • Inet (sockaddr_in): {sin_family:2, sin_port:8080, sin_addr:"127.0.0.1"}.
    • Inet6 (sockaddr_in6): {sin6_family:24, sin6_port:8080, sin6_flowinfo:0, sin6_addr:"::1", sin6_scope_id:0}.
  2. The length of socket addresses is computed by the module.
  3. In getsockopt and setsockopt: optval can only be a number.

I made this module to perform fast synchronous communication between node processes. Please, don't ask me why I needed the perform synchronous communication. Without C++ addon, this can only be achieved with the synchronous API of fs / child_process. Both these solutions are incredibly inefficient.

Example

Server

const PosixSocket = require("posix-socket");
const sockfd = PosixSocket.socket(PosixSocket.AF_UNIX, PosixSocket.SOCK_STREAM, 0);
PosixSocket.bind(sockfd, {
  sun_family: PosixSocket.AF_UNIX,
  sun_path: "/tmp/yo.sock"
});
PosixSocket.listen(sockfd, 1);
const address = {};
const sockfd1 = PosixSocket.accept(sockfd, address);
console.log("connection accepted from", address);
const buffer = new ArrayBuffer(100);
const size = PosixSocket.recv(sockfd1, buffer, buffer.byteLength, 0);
console.log("got: <"+String.fromCharCode.apply(null, new Uint16Array(buffer, 0, size))+">");
PosixSocket.close(sockfd);
require("fs").unlinkSync("/tmp/yo.sock");

Client

const PosixSocket = require("posix-socket");
const sockfd = PosixSocket.socket(PosixSocket.AF_UNIX, PosixSocket.SOCK_STREAM, 0);
PosixSocket.connect(sockfd, {
  sun_family: PosixSocket.AF_UNIX,
  sun_path: "/tmp/yo.sock"
});
const buffer = new ArrayBuffer(100);
const view = new Uint16Array(buffer, 0, buffer.length);
const string = "HelloWorld!";
for (let i = 0; i<string.length; i++)
  view[i] = string.charCodeAt(i);
PosixSocket.send(sockfd, buffer, string.length*view.BYTES_PER_ELEMENT, 0);
PosixSocket.close(sockfd);

Troubleshooting

https://github.com/nodejs/node-gyp/blob/master/macOS_Catalina.md