test mirror

Andreas Kling ec590ef3e6 LibJS: Add builtin for Math.random() před 8 hodinami
.devcontainer dda1573746 Devcontainer: Set VCPKG_FORCE_SYSTEM_BINARIES when building cache před 1 měsícem
.github b64d450f32 CI: Set correct architecture for JS artifact builds před 1 dnem
AK 5226a566e9 AK: Modify IntrusiveRedBlackTree for Windows před 1 dnem
Base 1be3e7fd8a LibWebView: Add do-not-track setting to about:settings před 1 dnem
Documentation 3bc6870bbf Meta: Make the "Release" build type use -O3 and -flto před 2 dny
Libraries ec590ef3e6 LibJS: Add builtin for Math.random() před 6 hodinami
Meta 4b04e97feb LibWeb: Send IPC messages exceeding socket buffer through shared memory před 6 hodinami
Services bc0ec84100 LibWeb: Don't queue rendering task for empty display lists před 21 hodinami
Tests 405785f584 Tests: Disable 3 tests that are flaky on CI před 1 dnem
Toolchain 1fec9d6917 Meta: Update vcpkg to latest master před 1 dnem
UI 920170f60a LibWebView+UI: Remove native do-not-track setting před 1 dnem
Utilities 82a2ae99c8 Everywhere: Remove DeprecatedFlyString + any remaining references to it před 1 dnem
.clang-format 66a89bd695 Meta: Support using clang-format on Objective-C++ files před 1 rokem
.clang-tidy 94a8b635c9 Meta: Disable clang-tidy “implicit-bool-conversion” check před 2 měsíci
.clangd 4ffca2089e Meta: Change the default build directories to exclude "ladybird" prefix před 4 měsíci
.editorconfig c786d2126a Meta: Add .editorconfig před 2 roky
.gitattributes 681a2ac14e LibGfx: Remove support for the various "portable" image formats před 9 měsíci
.gitignore 93712b24bf Everywhere: Hoist the Libraries folder to the top-level před 4 měsíci
.gn 411f5af0b8 Meta: Automatically generate a compilation database for clangd před 1 rokem
.mailmap cc4b3cbacc Meta: Update my e-mail address everywhere před 6 měsíci
.pre-commit-config.yaml 93954dcd9a Meta: Replace deprecated pre-commit stage name před 5 měsíci
.prettierignore 93712b24bf Everywhere: Hoist the Libraries folder to the top-level před 4 měsíci
.prettierrc 54036d660a Meta: Move prettier config files to the root of the repository před 4 roky
.swift-format 1bf4a225bd Meta: Add swift-format configuration před 8 měsíci
.ycm_extra_conf.py 51f5da00d7 Meta: Make YCM return flags as Python list před 9 měsíci
CMakeLists.txt 60dd5cc4ef UI/Qt: Migrate to LibWebView's autocomplete engine před 1 dnem
CMakePresets.json 3bc6870bbf Meta: Make the "Release" build type use -O3 and -flto před 2 dny
CODE_OF_CONDUCT.md 45a3360a62 Meta: Add code of conduct (from the Ruby community) před 6 měsíci
CONTRIBUTING.md 66732d2203 Meta: Switch to clang-format-19 as the standard formatter před 3 měsíci
ISSUES.md 6fc62c1538 Docs: Add info about --enable-idl-tracing flag před 2 měsíci
LICENSE ec8121d9b6 Meta: Update license year před 1 měsícem
README.md 03b9e555c0 Libraries: Remove LibArchive před 4 měsíci
SECURITY.md 51912bf0da Documentation: Make updates to align better with new issue template před 5 měsíci
vcpkg-configuration.json a3e24163aa Meta: Add overlay port for vulkan-loader před 9 měsíci
vcpkg.json 8e0786641f Meta: Explicitly enable zstd feature for tiff in vcpkg před 1 dnem

README.md

Ladybird

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

[!IMPORTANT] 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 development discussion.

Please read Getting started contributing if you plan to contribute to Ladybird for the first time.

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

The full contribution guidelines can be found in CONTRIBUTING.md.

License

Ladybird is licensed under a 2-clause BSD license.