云湖邮局开放版

这是一个众乐乐的版本,私人使用请看 使用云湖开放API部署云湖邮局 | Runoneall import PostalMime from "postal-mime"; async function parse(message) { const message_from ...

阅读更多 >>

一个为OpenWrt写的简易HTTP服务器

用 go 编写,完美跨平台 main.go package main import ( "embed" "fmt" "net" "net/http" "os" "path/...

阅读更多 >>

使用Worker搭建多人实时会议

代码非常简单,极容易集成,可以玩玩我的 demo https://oneall.eu.org/weblive async function textresp(text, status = 200) { return new Response(text, { status, ...

阅读更多 >>

一个不多不少刚刚好的短链api实现

这是我用来集成进我博客里的一个api,把不必要的功能全都省略了 var whitelist = []; async function textresp(text, status = 200) { return new Response(text, { status, ...

阅读更多 >>

我用纯Go实现的跨平台IPC操作库

项目地址 runoneall/pgoipc: 用纯 Go 实现的跨平台 IPC 操作库,包含服务端和客户端 该包支持 Unix (Domain Socket) 和 Windows (Named Pipe) 该包对 net 和 github.com/Microsoft/go-winio 进行...

阅读更多 >>

如何在Windows上实现X11 Forwarding?

commit: windows support · runoneall/nodebus@a1d0505 最终效果如图: 需要配合 VcXsrv 才行, 环境变量 DISPLAY, 在 X11 启动时指定 --trust-x11 绕过 xauth 验证(Windows上没有)

阅读更多 >>

nodebus新功能:x11转发

跟 ssh 的 x11 转发一个功能,所以,nodebus 也实现了一个 如图,只需指定 --x11 便可,无需服务器有桌面环境即可像本地应用一样运行 GUI 程序

阅读更多 >>

nodebus cfgcenter从http迁移到ipc通信

cfgcenter migrated from http to ipc · runoneall/nodebus@3888a60 代码量可以说是大幅减小了,我封装了一个适用于 nodebus 的 ipc 服务端和客户端(稍微改改就可以集成到你自己的项目中) nodebus/ipc ...

阅读更多 >>

nodebus新功能: cfgcenter

花了一上午的时间,实现了这个设想 cfgcenter --help 集中式的管理节点配置 Usage: nodebus cfgcenter [flags] Flags: -h, --help help for cfgcenter --host string ...

阅读更多 >>

nodebus v3版本发布!

地址:https://github.com/runoneall/nodebus 此次更新有一个 break changes:在 configm 中,将 ssh 的 port 类型从 int 改到 string 了,方便 net.JoinHostPort,至于为什么,net.JoinHostPort ...

阅读更多 >>