Filter
Exclude
Time range
-
Near
Bun = Apple JavascriptCore
Jun 13
did you know that most programming languages are just "C wrappers"
15
alupa2🌸 retweeted
オイオイオイオイオイオイ Shared-memory threads for JavaScriptCore (experimental, not working yet) github.com/oven-sh/WebKit/pu…
8
33
15,942
Jun 11
The future Internet, built peer-to-peer. Pear is an installable Peer-to-Peer (P2P) Runtime, Development & Deployment platform. Build, share & extend unstoppable, zero-infrastructure P2P applications for Mobile, Desktop & Terminal. Welcome to the Internet of Peers – @Holepunch_to the P2P Company Bare 是一个轻量级的模块化 JavaScript 运行时环境 github.com/holepunchto/bare Bare 支持多种引擎(JavaScriptCore、V8、QuickJS) 通过 libjs (built on libuv) 实现对 C API 的最小 JavaScript 绑定 适用于桌面和移动设备,与 Node.js 类似 它提供了一种异步、事件驱动的架构 但与 Node.js 不同的是,Bare 将嵌入式应用和跨设备支持作为其核心用例 力求在手机和笔记本电脑上都能流畅运行 适用于联网的、点对点应用,并且可以在各种硬件上运行
2
2
618
To be completely fair; I have beef with V8 but... If tomorrow SpiderMonkey or JavaScriptCore expose the same primitives, the attack still works. In 2026, It's about fuckin time we start taking side channel more serious. We're at a point now where you're no longer safe to 'browse' the internet. The word browse would imply stress free leisure. What we have here, is a failure which smells very much like an intel agency took a nice healthy shit on a keyboard.
I'll say it again. #FuckV8 😂😂😂😂😂
10
835
TypeScript를 LLVM 기계어로 직접 컴파일, "Perry" 네이티브 컴파일러 기존의 TypeScript 개발 패러다임은 고수준 추상화인 TS 코드를 JavaScript로 트랜스파일한 뒤, V8이나 JavaScriptCore 같은 무거운 JIT 런타임 엔진(Node․js, Bun, Deno 등) 위에서 구동하… news.hada.io/topic?id=30287
2
6
1,728
Bun:一款一体化的 JavaScript 工具包 • Bun 是一个快速、一体化的 JavaScript、TypeScript 和 JSX 工具包,旨在作为 Node.js 的即插即用替代品,实现 100% 的兼容性。 • 它集成了 JavaScript 运行时、捆绑程序、测试运行器和包管理器,使开发人员能够使用单个工具或完整的堆栈。 • Bun 的运行时基于 JavaScriptCore 构建,提供高性能,内置支持 TypeScript、JSX、React,以及包含数据库驱动程序和 WebSocket 服务器的全面标准库。 • 作为软件包管理器,Bun 安装软件包的速度明显快于 npm、pnpm 或 yarn,它利用全局缓存,并高效地将 tarballs 流式传输到磁盘。 • 集成测试运行器与 Jest 兼容,提供更快的执行速度和内置的代码覆盖率,使其成为 Jest 和 Vitest 的更优替代方案。 • Bun 的捆绑程序支持针对浏览器和服务器目标的 TypeScript、JSX、React 和 CSS,从而能够创建单文件可执行文件和优化的生产构建,且无需任何配置。 • 显著功能包括内置的图像处理 API、HTTP/2 和 HTTP/3 支持、终端中的 Markdown 渲染、无头浏览器自动化以及进程中调度器。 bun.com/
2 Dec 2025
Bun is joining Anthropic! bun.com/blog/bun-joins-anthr…
18
JXKit, Swift JavaScriptCore bridge Provides a cross-platform Swift API for script evaluation, errors, Codable marshalling, and embedded contexts
1
5
Replying to @0xSero @BenjDicken
Bun wraps JavascriptCore. Thank WebKit team.
36
I found a 0 cost solution that reduced the latency to 20ms. It uses javascriptcore from dioxus itself, removes botguard dependency for logged in users and yt dlp entirely
1
1
107
modern tech is crazy. > cursor is a wrapper over vscode. > vscode is a wrapper over electron. > electron is a wrapper over chromium. > slack desktop is a wrapper over electron. > discord desktop too is a wrapper over electron. > notion desktop is a wrapper over electron. > web apps are wrappers over html/css/javascript. > node.js is a wrapper over the v8 engine. > bun is a wrapper over javascriptcore. > react is also a wrapper over the browser dom. > next.js is a wrapper over react. > docker is a wrapper over linux kernel features. > kubernetes is a wrapper over containers.
24
2
38
1,522
This is exciting. I decided to add a whole YouTube search/download system to my FrankenWhisper project to make it quick and easy for agents to put together a set of really polished transcripts for a list of YT videos or an actual YT playlist. I figured I could just do a clean-room, memory-safe port to Rust of yt-dlp, but I underestimated how complex it is to deal with YouTube's anti-bot measures. The hardest part is that you need to run some very complex, very obfuscated JS to reliably make it all work. Which normally would throw a big monkey wrench into my goal of making a clean, self-contained, memory-safe Rust project, because then you have to bring in browsers and all this other nonsense, you have to grapple with FFI stuff that makes unsafe unavoidable, etc. A real buzz kill. But it just so happens that I've been working for months on FrankenEngine, my from-scratch JS engine designed specifically for handling adversarial extension workloads in AI agent harnesses. If we could use that for this purpose, it would totally solve the problem. Now, this is particularly exciting for me because I still haven't actually tried to USE FrankenEngine for anything yet, despite investing many, many billions of tokens to create millions of lines of Rust and 100k tests. To give a sense of the effort so far, FrankenEngine now has 5,273 commits despite being started just 4 months ago: github.com/Dicklesworthstone… Anyway, if I can get this all to work, not only will it be a very useful tool in general, but it will be a truly demanding existence proof that FrankenEngine really does work and can handle real-world, complex applications in practice. Which, if true, would really be quite incredible if you think about it. The teams that have been assembled by Google to create its V8 JS engine, or by Apple to make its JavaScriptCore engine, are extensive and include some of the smartest, most highly paid engineers at either company. And they've been at it for 10 years already. And btw, FrankenEngine doesn't exist in isolation; it has a sister project, FrankenNode, which is my agent-centric replacement for Node/Bun (and this time, the Rust engineering is actually done properly, without all the unsafe and UB!). See github.com/Dicklesworthstone… for details on that one. Anyway, the next week or so will be very interesting and exciting for me. Since this will be the first real-world use case for FrankenEngine, it will likely reveal some problems that were missed despite its insane collection of over 100,000 tests, but I should be able to quickly triage and fix all of them. If you want to follow along, here's the repo for FrankenWhisper: github.com/Dicklesworthstone…
10
5
109
15,049
JavaScriptCoreのTemporal実装がなんか完成したっぽいという噂があるけどまだ信じられてない マジで?
1
2
47
10,480