تم إطلاق Bun v3.1 للتو، والمجتمع المحيط بلغة JavaScript في حالة من النشاط. إذا كنت تعتقد أن Bun سريع بالفعل، فإن هذا الإصدار يثبت أنه لم يبدأ بعد. مع واجهات برمجة تطبيقات جديدة، وتوافق أعمق مع Node.js، وتحسينات في السرعة تدفع حدود ما يمكن أن يفعله بيئة التشغيل، فإن Bun v3.1 ليس مجرد تحديث تدريجي، بل هو بيان نية.
2. Improved Node.js Compatibility
One of the biggest barriers to Bun adoption has been compatibility with existing Node.js code. Bun v3.1 makes significant strides here:
-Full support for Node.js built-in moduleslike crypto, fs, path, http, and stream, now passing 98% of Node.js core test suite.
-Better CommonJS interop, require statements work with most npm packages without manual configuration.
- Experimental support for Node.js worker threads, important for CPU-bound tasks.
3. New APIs and Developer Experience
Bun v3.1 introduces several new APIs that make it more than just a faster Node:
- **Bun.serve()**now supports HTTP/2 out of the box with zero config. -**Bun.file()**improvements: faster reading of large files with streaming support. -Native support for TypeScript decorators(both legacy and TC39 proposals). -Built-in test runnernow supports snapshot testing and code coverage.
4. Package Manager and Workspace Enhancements
Bun's npm-compatible package manager (bun install) gets a speed bump of its own:
-Lockfile generation is now 1.5x faster.
- Workspace supportis now stable, perfect for monorepos.
-Publishing packagesdirectly from Bun with
bun publish(experimental).
Real-World Migration Story
Dianne Penn, a technical product manager at Anthropic, shared her team's experience migrating a production service from Node.js to Bun:

"We were running a data pipeline that processes real-time analytics. Cold starts with Node were around 400ms, tolerable but costly at scale. After migrating to Bun, cold starts dropped to under 150ms. Our total compute costs reduced by 25%."
How to Get Started with Bun v3.1
If you're new to Bun, here's a quick setup:
curl -fsSL https://bun.sh/install | bash
Or upgrade if you already have Bun:
bun upgrade
Verify the version:
bun --version
# Should be 3.1.x
Porting a Simple Express App
Let's see a quick migration. Here's a basic Express app:
// app.js
const express = require('express');
const app = express();
app.get('/', (req, res) => {
res.send('Hello World!');
});
app.listen(3000, () => {
console.log('Server running on port 3000');
});
With Bun, you can run it directly:
bun run app.js
But for maximum performance, use Bun's native APIs:
// bun-server.js
Bun.serve({
port: 3000,
fetch(req) {
return new Response('Hello World!');
},
});
الصورة الأكبر: ما يعنيه Bun v3.1 لـ JavaScript
أجبر الصعود السريع لـ Bun كلاً من Node.js و Deno على الابتكار. أضافت Node.js مؤخرًا دعمًا تجريبيًا لـ TypeScript، وحسّن Deno توافقه مع npm. هذه المنافسة تفيد الجميع.

بالنسبة لمطوري الواجهات الأمامية، فإن التأثير العملي الأكبر هو في سلسلة أدوات البناء. المترجم المدمج، والحزمة (bundler)، ومدير الحزم في Bun يعني أنه يمكنك استبدال Webpack و Babel و npm بملف ثنائي واحد. هذا ليس أسرع فحسب، بل أبسط أيضًا.
الخاتمة
Bun v3.1 هو خطوة كبيرة إلى الأمام. إنه يعزز مكانة Bun كبديل قابل للتطبيق لـ Node.js في التطوير الحديث، خاصة في السياقات الحساسة للأداء. على الرغم من أنه ليس مثاليًا بعد، إلا أن معدل التحسن مذهل.
إذا لم تجرب Bun بعد، فهذا هو الوقت المناسب. قم بتثبيته، وحاول تشغيل مشروعك الحالي، وشاهد الفرق. مستقبلك أنت، وخط أنابيب البناء الخاص بك، سيشكرونك.
ما هي تجربتك مع Bun؟ هل تفكر في الانتقال من Node.js؟ شارك أفكارك في التعليقات أو على Twitter. برمجة سعيدة!
