ladybird/README.md

54 lines
1.9 KiB
Markdown
Raw Normal View History

# Ladybird
2019-02-08 13:04:23 +03:00
[Ladybird](https://ladybird.dev) 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
>
2019-02-08 13:04:23 +03:00
## Features
2019-05-28 15:47:24 +03:00
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.
2019-02-08 13:04:23 +03:00
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:
2019-02-08 13:04:23 +03:00
- 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
- LibArchive: Archive file format support
- LibUnicode: Unicode and locale support
- LibAudio, LibMedia: Audio and video playback
- LibCore: Event loop, OS abstraction layer
- LibIPC: Inter-process communication
2019-06-07 18:57:03 +03:00
## How do I build and run this?
Meta: Completely overhaul the README The README was getting a bit outdated in places, and it didn't have its priorities straight (libc uwu, also we have browser no big deal). These changes are largely based on what was discussed among major contributors and maintainers, though I put in some extra stuff I'm bothered by. The start of README is unchanged. The project blurb is probably its best part, both then and now, so it definitely stays. The FAQ is moved up under the About section because it's easier to find that way and makes more sense logically. The Features section is a highly compressed version of the previous several features sections. Priorities are a big focus here: List what matters to a reader, what they will likely care about, what's impressive to them and what's probably not. The list therefore starts with the factual basics about the Kernel followed directly by Browser+LibJS, the probably biggest userland feat in this project. Then, we pedal back and talk about OS basics, like security, POSIX, services, libraries, devtools. We finish out by addressing the end user concerns (customization, UI apps, multimedia & file format support), which includes a bunch of things previously underrepresented. I think it's rather important that Serenity has a unified style and UX philosophy, so this should definitely be mentioned :^) At the end, I think it's very important to state the NIH philosophy, but also the fact that there are more than two hundred (!) ports. Documentation section is slightly expanded to mention the Documentation folder which doesn't really appear anywhere in the previous version. Build instructions include a simple mention of the fact that Serenity runs on almost anything. It's good to not scare off Windows users :^)) (self-deprecating humour overload) The Get in Touch section and the issues section are combined into one "how do i talk to u help" section that contains the same information but includes a general link to CONTRIBUTING. The Contributors section is now one big list of 100+ commit people. Also, the GitHub contributor list is linked, as that lists over 30 additional people IIRC + detailed statistics.
2022-03-28 22:33:13 +03:00
See [build instructions](Documentation/BuildInstructionsLadybird.md) for information on how to build Ladybird.
Meta: Completely overhaul the README The README was getting a bit outdated in places, and it didn't have its priorities straight (libc uwu, also we have browser no big deal). These changes are largely based on what was discussed among major contributors and maintainers, though I put in some extra stuff I'm bothered by. The start of README is unchanged. The project blurb is probably its best part, both then and now, so it definitely stays. The FAQ is moved up under the About section because it's easier to find that way and makes more sense logically. The Features section is a highly compressed version of the previous several features sections. Priorities are a big focus here: List what matters to a reader, what they will likely care about, what's impressive to them and what's probably not. The list therefore starts with the factual basics about the Kernel followed directly by Browser+LibJS, the probably biggest userland feat in this project. Then, we pedal back and talk about OS basics, like security, POSIX, services, libraries, devtools. We finish out by addressing the end user concerns (customization, UI apps, multimedia & file format support), which includes a bunch of things previously underrepresented. I think it's rather important that Serenity has a unified style and UX philosophy, so this should definitely be mentioned :^) At the end, I think it's very important to state the NIH philosophy, but also the fact that there are more than two hundred (!) ports. Documentation section is slightly expanded to mention the Documentation folder which doesn't really appear anywhere in the previous version. Build instructions include a simple mention of the fact that Serenity runs on almost anything. It's good to not scare off Windows users :^)) (self-deprecating humour overload) The Get in Touch section and the issues section are combined into one "how do i talk to u help" section that contains the same information but includes a general link to CONTRIBUTING. The Contributors section is now one big list of 100+ commit people. Also, the GitHub contributor list is linked, as that lists over 30 additional people IIRC + detailed statistics.
2022-03-28 22:33:13 +03:00
Ladybird runs on Linux, macOS, Windows (with WSL2), and many other \*Nixes.
2019-02-08 13:04:23 +03:00
## How do I read the documentation?
Meta: Completely overhaul the README The README was getting a bit outdated in places, and it didn't have its priorities straight (libc uwu, also we have browser no big deal). These changes are largely based on what was discussed among major contributors and maintainers, though I put in some extra stuff I'm bothered by. The start of README is unchanged. The project blurb is probably its best part, both then and now, so it definitely stays. The FAQ is moved up under the About section because it's easier to find that way and makes more sense logically. The Features section is a highly compressed version of the previous several features sections. Priorities are a big focus here: List what matters to a reader, what they will likely care about, what's impressive to them and what's probably not. The list therefore starts with the factual basics about the Kernel followed directly by Browser+LibJS, the probably biggest userland feat in this project. Then, we pedal back and talk about OS basics, like security, POSIX, services, libraries, devtools. We finish out by addressing the end user concerns (customization, UI apps, multimedia & file format support), which includes a bunch of things previously underrepresented. I think it's rather important that Serenity has a unified style and UX philosophy, so this should definitely be mentioned :^) At the end, I think it's very important to state the NIH philosophy, but also the fact that there are more than two hundred (!) ports. Documentation section is slightly expanded to mention the Documentation folder which doesn't really appear anywhere in the previous version. Build instructions include a simple mention of the fact that Serenity runs on almost anything. It's good to not scare off Windows users :^)) (self-deprecating humour overload) The Get in Touch section and the issues section are combined into one "how do i talk to u help" section that contains the same information but includes a general link to CONTRIBUTING. The Contributors section is now one big list of 100+ commit people. Also, the GitHub contributor list is linked, as that lists over 30 additional people IIRC + detailed statistics.
2022-03-28 22:33:13 +03:00
Code-related documentation can be found in the [documentation](Documentation/) folder.
Meta: Completely overhaul the README The README was getting a bit outdated in places, and it didn't have its priorities straight (libc uwu, also we have browser no big deal). These changes are largely based on what was discussed among major contributors and maintainers, though I put in some extra stuff I'm bothered by. The start of README is unchanged. The project blurb is probably its best part, both then and now, so it definitely stays. The FAQ is moved up under the About section because it's easier to find that way and makes more sense logically. The Features section is a highly compressed version of the previous several features sections. Priorities are a big focus here: List what matters to a reader, what they will likely care about, what's impressive to them and what's probably not. The list therefore starts with the factual basics about the Kernel followed directly by Browser+LibJS, the probably biggest userland feat in this project. Then, we pedal back and talk about OS basics, like security, POSIX, services, libraries, devtools. We finish out by addressing the end user concerns (customization, UI apps, multimedia & file format support), which includes a bunch of things previously underrepresented. I think it's rather important that Serenity has a unified style and UX philosophy, so this should definitely be mentioned :^) At the end, I think it's very important to state the NIH philosophy, but also the fact that there are more than two hundred (!) ports. Documentation section is slightly expanded to mention the Documentation folder which doesn't really appear anywhere in the previous version. Build instructions include a simple mention of the fact that Serenity runs on almost anything. It's good to not scare off Windows users :^)) (self-deprecating humour overload) The Get in Touch section and the issues section are combined into one "how do i talk to u help" section that contains the same information but includes a general link to CONTRIBUTING. The Contributors section is now one big list of 100+ commit people. Also, the GitHub contributor list is linked, as that lists over 30 additional people IIRC + detailed statistics.
2022-03-28 22:33:13 +03:00
## Get in touch and participate!
Join [our Discord server](https://discord.gg/nvfjVJ4Svh) to participate in development discussion.
Before opening an issue, please see the [issue policy](CONTRIBUTING.md#issue-policy).
2019-02-08 13:04:23 +03:00
Meta: Completely overhaul the README The README was getting a bit outdated in places, and it didn't have its priorities straight (libc uwu, also we have browser no big deal). These changes are largely based on what was discussed among major contributors and maintainers, though I put in some extra stuff I'm bothered by. The start of README is unchanged. The project blurb is probably its best part, both then and now, so it definitely stays. The FAQ is moved up under the About section because it's easier to find that way and makes more sense logically. The Features section is a highly compressed version of the previous several features sections. Priorities are a big focus here: List what matters to a reader, what they will likely care about, what's impressive to them and what's probably not. The list therefore starts with the factual basics about the Kernel followed directly by Browser+LibJS, the probably biggest userland feat in this project. Then, we pedal back and talk about OS basics, like security, POSIX, services, libraries, devtools. We finish out by addressing the end user concerns (customization, UI apps, multimedia & file format support), which includes a bunch of things previously underrepresented. I think it's rather important that Serenity has a unified style and UX philosophy, so this should definitely be mentioned :^) At the end, I think it's very important to state the NIH philosophy, but also the fact that there are more than two hundred (!) ports. Documentation section is slightly expanded to mention the Documentation folder which doesn't really appear anywhere in the previous version. Build instructions include a simple mention of the fact that Serenity runs on almost anything. It's good to not scare off Windows users :^)) (self-deprecating humour overload) The Get in Touch section and the issues section are combined into one "how do i talk to u help" section that contains the same information but includes a general link to CONTRIBUTING. The Contributors section is now one big list of 100+ commit people. Also, the GitHub contributor list is linked, as that lists over 30 additional people IIRC + detailed statistics.
2022-03-28 22:33:13 +03:00
A general guide for contributing can be found in [`CONTRIBUTING.md`](CONTRIBUTING.md).
2019-06-07 18:57:03 +03:00
2019-02-08 13:04:23 +03:00
## License
Ladybird is licensed under a 2-clause BSD license.