Mill
:palm_tree: network library for node
Install / Use
/learn @reqshark/MillREADME
node.js function access to libmill
go style concurrency for node.
an experiment
$ npm i libmill
# or
$ git clone https://github.com/reqshark/mill.git && cd mill
$ git submodule update --init
$ npm i && npm t
# or build with:
$ make
tcp library
for msgs over tcp/ip, a server can use tcplisten(). once a client connects, the server can use tcpaccept() to establish bidirectional tcp streams.
tcplisten() and tcpaccept()
var lib = require('libmill');
/* create an ipaddr */
var ipaddr = lib.iplocal(5555);
/* listen on the ipaddr */
var ls = lib.tcplisten(ipaddr);
console.log('listening on port %s', lib.tcpport(ls));
while(1){
/* accept and establish tcp connection */
var as = lib.tcpaccept(ls);
console.log('\nnew connection\nmsg recvd: ' + lib.tcprecvuntil(as));
/* close tcp connection */
lib.tcpclose(as);
}
tcpconnect()
var lib = require('libmill');
/* create an ipaddr */
var ipaddr = lib.iplocal(5555);
/* connect over the ipaddr */
var cs = lib.tcpconnect(ipaddr);
var str = 'go style concurrency for node', num = 1;
/* send a few msg before tcpflush */
/* delimiter is set to '\r', tells tcprecvuntil when to finish */
send('msg # ', str);
send('msg # ', str);
send('msg #', str+'\r');
function send(n, msg){
n+= num+++msg+'\n';
lib.tcpsend(cs, new Buffer(n));
}
/* tcpsend() stores data in user space and tcpflush() pushes it to kernel */
lib.tcpflush(cs);
udp library
udplisten() and udprecv()
var lib = require('libmill');
/* create an ipaddr */
var ipaddr = lib.iplocal(4444);
/* listen on ipaddr */
var ls = lib.udplisten(ipaddr);
process.stdout.write('udp socket listening on port: ' + lib.udpport(ls) + '\n');
/* next, to get udp msgs, use udprecv
if you pass a cb function as the 3rd param, the call will use libuv async
the callback's param will contain your msg
otherwise w/out a cb, it will block and udprecv's return value is your msg */
/* the non-blocking way (a for async) */
lib.udprecv(ls, 255, function (msg) {
var buf = String(msg.buf) /* msg.buf is a node buffer of the packet body */
var addr = msg.addr /* string address of packet origin */
});
/* the blocking way */
while (1) {
var sz = 13;
var deadline = 10;
var msg = lib.udprecv(ls, sz, deadline); /* deadline is optional param */
process.stdout.write(msg.buf + '\n');
}
udpsend()
var s = lib.udplisten(ipaddr);
var buf = new Buffer('Hello, world!');
lib.udpsend(s, ipaddr, buf);
test
see test directory
license
MIT
<sub>tested on travis linux and osx.</sub>
Related Skills
node-connect
352.9kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
111.5kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
352.9kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
352.9kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
