กลับไปหน้า Tools

GetNotes Tools

LadybirdBrowser/ladybird

Tool นี้คืออะไร

Ladybird คือเว็บเบราว์เซอร์อิสระที่ใช้เอนจินใหม่ที่อิงตามมาตรฐานเว็บ เหมาะสำหรับนักพัฒนาที่ต้องการสำรวจเบราว์เซอร์ในสถานะ pre-alpha ซึ่งมีสถาปัตยกรรมแบบหลายกระบวนการเพื่อความทนทานและความปลอดภัย

ข้อมูลโปรเจกต์

ดาว

65.4K

Forks

3.1K

License

BSD-2-Clause

อัปเดต GitHub ล่าสุด

12 ส.ค. 2569

เพิ่มใน GetNotes

17 ส.ค. 2569

Repository

LadybirdBrowser/ladybird

Ecosystem

C++

แปลและเรียบเรียงโดย AI

เนื้อหาฉบับภาษาไทย

ใช้อ่านเพื่อทำความเข้าใจเบื้องต้น โปรดตรวจสอบรายละเอียดสำคัญกับเอกสารต้นฉบับด้านล่าง

Ladybird

Ladybird คือเว็บเบราว์เซอร์ที่เป็นอิสระอย่างแท้จริง โดยใช้เอนจินใหม่ที่อิงตามมาตรฐานเว็บ

สำคัญ

Ladybird อยู่ในสถานะ pre-alpha และเหมาะสำหรับนักพัฒนาเท่านั้น

คุณสมบัติ

เรามุ่งมั่นที่จะสร้างเบราว์เซอร์ที่สมบูรณ์และใช้งานได้สำหรับเว็บสมัยใหม่

Ladybird ใช้สถาปัตยกรรมแบบหลายกระบวนการ (multi-process architecture) โดยมีกระบวนการ UI หลัก, กระบวนการเรนเดอร์ WebContent หลายกระบวนการ, กระบวนการ ImageDecoder และกระบวนการ RequestServer

การถอดรหัสรูปภาพและการเชื่อมต่อเครือข่ายจะทำนอกกระบวนการ (out of process) เพื่อให้มีความทนทานต่อเนื้อหาที่เป็นอันตรายมากขึ้น แต่ละแท็บมีกระบวนการเรนเดอร์ของตัวเอง ซึ่งถูกแซนด์บ็อกซ์ (sandboxed) จากส่วนที่เหลือของระบบ

ในขณะนี้ ส่วนประกอบสนับสนุนไลบรารีหลักหลายอย่างสืบทอดมาจาก SerenityOS:

  • LibWeb: เอนจินเรนเดอร์เว็บ
  • LibJS: เอนจิน JavaScript
  • LibWasm: การใช้งาน WebAssembly
  • LibCrypto/LibTLS: พื้นฐานการเข้ารหัสและ Transport Layer Security
  • LibHTTP: ไคลเอนต์ HTTP/1.1
  • LibGfx: ไลบรารีกราฟิก 2D, การถอดรหัสและเรนเดอร์รูปภาพ
  • LibUnicode: การสนับสนุน Unicode และ locale
  • LibMedia: การเล่นเสียงและวิดีโอ
  • LibCore: Event loop, เลเยอร์นามธรรมของ OS
  • LibIPC: การสื่อสารระหว่างกระบวนการ

จะสร้างและรันได้อย่างไร?

ดู คำแนะนำในการสร้าง สำหรับข้อมูลเกี่ยวกับวิธีการสร้าง Ladybird

Ladybird รันได้บน Linux, macOS, Windows (ด้วย WSL2) และระบบปฏิบัติการ *Nixes อื่นๆ อีกมากมาย

จะอ่านเอกสารได้อย่างไร?

เอกสารที่เกี่ยวข้องกับโค้ดสามารถพบได้ในโฟลเดอร์ documentation

ติดต่อและเข้าร่วม!

เข้าร่วม เซิร์ฟเวอร์ Discord ของเรา เพื่อเข้าร่วมการอภิปรายเกี่ยวกับปัญหาและการพัฒนา

โปรดอ่าน การมีส่วนร่วมกับ Ladybird หากคุณยังใหม่กับ Ladybird และต้องการช่วย

ก่อนที่จะเปิดประเด็น (issue) โปรดดู นโยบายประเด็น และ แนวทางการรายงานประเด็นโดยละเอียด

แนวทางการมีส่วนร่วมในโครงการสามารถพบได้ใน CONTRIBUTING.md

ใบอนุญาต

Ladybird ได้รับอนุญาตภายใต้ใบอนุญาต 2-clause BSD

เอกสารโปรเจกต์

อ่านเอกสารต้นฉบับ

README วิธีติดตั้ง วิธีใช้งาน และข้อกำหนดจาก repository ต้นฉบับ

ดูไฟล์บน GitHub

Ladybird

Ladybird is a truly independent web browser, using a novel engine based on web standards.

สำคัญ

Ladybird is in a pre-alpha state, and only suitable for use by developers

Features

We aim to build a complete, usable browser for the modern web.

Ladybird uses a multi-process architecture with a main UI process, several WebContent renderer processes, an ImageDecoder process, and a RequestServer process.

Image decoding and network connections are done out of process to be more robust against malicious content. Each tab has its own renderer process, which is sandboxed from the rest of the system.

At the moment, many core library support components are inherited from SerenityOS:

  • LibWeb: Web rendering engine
  • LibJS: JavaScript engine
  • LibWasm: WebAssembly implementation
  • LibCrypto/LibTLS: Cryptography primitives and Transport Layer Security
  • LibHTTP: HTTP/1.1 client
  • LibGfx: 2D Graphics Library, Image Decoding and Rendering
  • LibUnicode: Unicode and locale support
  • LibMedia: Audio and video playback
  • LibCore: Event loop, OS abstraction layer
  • LibIPC: Inter-process communication

How do I build and run this?

See build instructions for information on how to build Ladybird.

Ladybird runs on Linux, macOS, Windows (with WSL2), and many other *Nixes.

How do I read the documentation?

Code-related documentation can be found in the documentation folder.

Get in touch and participate!

Join our Discord server to participate in issue and development discussions.

Please read Getting involved with Ladybird if you're new to Ladybird and want to help.

Before opening an issue, please see the issue policy and the detailed issue-reporting guidelines.

The project participation guidelines can be found in CONTRIBUTING.md.

License

Ladybird is licensed under a 2-clause BSD license.

#browser#browser-engine