仓库地址 https://github.com/codehz/tjs
这是某天折腾 tcc 时突发奇想的的 idea,也就是用 js 做脚本,然后任何涉及系统的功能直接用 tcc 运行时编译出来调用(
查了查 node 方面有 node-ffi,但是显而易见都用了 nodejs 了,系统交互基本很多都能在纯 js 层做了,于是再搞这个
目前测试可以直接使用 windows api MessageBox 弹个框(暂时只支持 win,32 位+64 位)
特(que)色(xian):
示例代码:
import { Compiler } from "builtin:c";
const compiler = new Compiler("memory");
compiler.link("user32");
compiler.compile(`
#include <windows.h>
void msgbox(char const *text) {
MessageBoxA(NULL, text, "from js", 0);
}
`);
const obj = compiler.relocate({
msgbox: { arguments: ["string"] }
});
obj.msgbox(`from ${import.meta.url}`);
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.