serenity/Ladybird
Andreas Kling 09980af4ea LibWeb: Add Web::UIEvents::MouseButton enum, drop dependency on LibGUI
This was the only thing LibWeb needed from LibGUI, and we can just
duplicate the enum in LibWeb and get rid of a bogus dependency.
2024-06-02 20:24:42 +02:00
..
Android Meta+Documentation+Ports: Move from C++20 to C++23 2024-05-06 11:46:28 -06:00
AppKit LibWeb: Add Web::UIEvents::MouseButton enum, drop dependency on LibGUI 2024-06-02 20:24:42 +02:00
cmake
Icons Ladybird/Qt: Add a find in page widget 2024-05-30 16:30:11 +02:00
ImageDecoder Ladybird: Update Android build to work with current LibWebView/LibCore 2024-05-06 09:31:32 -06:00
Qt LibWeb: Add Web::UIEvents::MouseButton enum, drop dependency on LibGUI 2024-06-02 20:24:42 +02:00
RequestServer RequestServer: Handle IPC requests on multiple threads concurrently 2024-05-20 08:03:35 +02:00
SQLServer Ladybird: Register SQLServer with the task manager 2024-04-22 14:46:10 -06:00
WebContent LibWeb+Ladybird: Add option to enable the AffineCommandExecutorCPU 2024-05-29 08:17:01 +02:00
WebDriver
WebWorker
.gitignore
CMakeLists.txt Ladybird/AppKit: Implement a basic find-in-page panel 2024-05-31 06:30:39 -04:00
default.nix
FontPlugin.cpp
FontPlugin.h
HelperProcess.cpp LibWeb+Ladybird: Add option to enable the AffineCommandExecutorCPU 2024-05-29 08:17:01 +02:00
HelperProcess.h
ImageCodecPlugin.cpp LibWeb+WebContent: Convert ImageCodecPlugin to use the promise-based API 2024-04-23 12:32:04 -06:00
ImageCodecPlugin.h LibWeb+WebContent: Convert ImageCodecPlugin to use the promise-based API 2024-04-23 12:32:04 -06:00
Info.plist
MachPortServer.cpp
MachPortServer.h
README.md Documentation: Update Ladybird README with more descriptive information 2024-04-23 11:24:14 -06:00
Types.h LibWeb+Ladybird: Add option to enable the AffineCommandExecutorCPU 2024-05-29 08:17:01 +02:00
Utilities.cpp Ladybird: Return a reference to the mach server name 2024-04-22 14:46:10 -06:00
Utilities.h Ladybird: Return a reference to the mach server name 2024-04-22 14:46:10 -06:00

Ladybird

Ladybird is a web browser built on the LibWeb and LibJS engines from SerenityOS. The Browser UI has a cross-platform GUI in Qt6 and a macOS-specific GUI in AppKit.

Ladybird aims to be a standards-compliant, independent web browser with no third-party dependencies. Currently, the only dependencies are UI frameworks like Qt6 and AppKit, and low-level platform-specific libraries like PulseAudio, CoreAudio and OpenGL.

Important

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

Features

The Ladybird browser application uses a multiprocess architecture with a main UI process, several WebContent renderer processes, an ImageDecoder process, a RequestServer process, and a SQLServer process for holding cookies.

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.

All the core library support components are developed in the serenity monorepo:

  • LibWeb: Web Rendering Engine
  • LibJS: JavaScript Engine
  • LibWasm: WebAssembly implementation
  • LibCrypto/LibTLS: Cryptography primitives and Transport Layer Security (rather than OpenSSL)
  • LibHTTP: HTTP/1.1 client
  • LibGfx: 2D Graphics Library, Image Decoding and Rendering (rather than skia)
  • LibArchive: Archive file format support (rather than libarchive, zlib)
  • LibUnicode, LibLocale: Unicode and Locale support (rather than libicu)
  • LibAudio, LibVideo: Audio and Video playback (rather than libav, ffmpeg)
  • LibCore: Event Loop, OS Abstraction layer
  • LibIPC: Inter-Process Communication
  • ... and more!

Building and Development

See build instructions for information on how to build Ladybird.

See CONTRIBUTING.md for information on how to contribute to Ladybird.

More Information

For more information about the history of Ladybird, see this blog post.

The official website for Ladybird is ladybird.dev.