Lexbor: Crafting a Browser Engine with Simplicity and Flexibility
Why build yet another browser engine? There's a myriad of challenges developers face in fully utilizing modern web technologies. Parsing HTML and CSS, dealing with URLs and encodings often involves slow, resource-heavy implementations or outdated solutions. Even established solutions, written in C++ and reaching tens of megabytes in volume, are often not versatile enough. Meanwhile, language-specific implementations for Python, Node.js, Rust, or any other favorite of the day are slow and prone to lock-in.
The Core Requirements
Lexbor's core requirements rose from the ashes of these challenges:
Portability
Lexbor aims to adapt to different platforms and integrate into various programming languages. It's not yet another library full of quirks and idiosyncrasies; Lexbor aims to offer developers flexibility to incorporate it into their work directly, regardless of the programming language they chose.
Modularity
Lexbor wants to keep things simple: Developers should be able to use only the parts they need. Whether it's an HTML or URL parser, the engine's code should be straightforward and easy to navigate, promoting rapid development.
Speed
In a nutshell, Lexbor wants things to happen real fast. It's not just about making a browser engine; it's about making sure that everything, even the most resource-intensive tasks such as HTML parsing, occur swiftly to meet the real-time demands of modern web applications.
Independence
Lexbor empowers developers by giving them full control over algorithms, resources, and dimensions. By eliminating on external dependencies, we let developers customize the engine without sacrificing performance or features.
Compliance
Lexbor commits to industry standards. Developers need to be sure that the code aligns with widely established specifications. The output of Lexbor's modules, be it HTML, CSS, URLs, or others, should match that of modern browsers, meeting industry specifications.
Origin Story
Having had all these goals in mind for about a decade, Alexander Borisov, whose name gave the project its title, came up with the idea of a browser engine crafted entirely in C (there's no school like the old school). The language was chosen simply because we believed it could meet all the criteria seamlessly.
Unlike heavyweights such as WebKit or Blink, Lexbor takes a lean and focused approach, delivering a nimble yet powerful browser engine. All it takes is years of top-notch developer expertise.
An important point to make: Lexbor doesn't stop at parsing and rendering modern HTML. It offers each component as a standalone entity, ready to be integrated into other people's projects. This approach sets us apart, providing a modular solution that not only meets browser needs but also empowers developers with versatile tools for their own web-related tasks.
All in all, we envision Lexbor a promising player in the menagerie of browser technologies, pushing the boundaries and helping developers fully leverage modern web technologies.
Features
Modules.
Single or separate libraries for each module.
No outside dependencies.
Easy to port to any platform.
C99 support.
Speed.
HTML Module
CSS Module
Full conformance with the CSS Syntax module.
Supports:
Selectors.
StyleSheet Tree (aka CSSOM).
and so on.
Fast.
Selectors Module
Search for HTML elements using CSS selectors.
Fast.
Encoding Module
Full conformance with the Encoding specification.
Supports 40 encodings for encode/decode.
for encode/decode. Supports single and buffering encode/decode.
Fast.
URL Module
Conformance with the URL specification
Support Unicode ToASCII
Fast.
Punycode Module
Conformance with the Punycode specification.
Support Encode/Decode.
Unicode Module
Unicode Standard Annex #15.
Support Unicode normalization forms: D (NFD), C (NFC), KD (NFKD), KC (NFKC).
Support chunks (stream).
Unicode Technical Standard #46.
Support Unicode IDNA Processing.
Support Unicode ToASCII.
Support Unicode ToUnicode.
Fast.
Development of modules in process
Layout
Font
and so on
Build and Installation
Binary packages
Binaries are available for:
CentOS 6, 7, 8
Debian 8, 9, 10, 11
Fedora 28, 29, 30, 31, 32, 33, 34, 36, 37
RHEL 7, 8
Ubuntu 14.04, 16.04, 18.04, 18.10, 19.04, 19.10, 20.04, 20.10, 21.04, 22.04
Currently for x86_64 architecture. If you need any other architecture, please, write to support@lexbor.com.
vcpkg
For vcpkg users there is a lexbor port that can be installed via vcpkg install lexbor or by adding it to dependencies section of your vcpkg.json file.
macOS
Homebrew
To install lexbor on macOS from Homebrew:
brew install lexbor
MacPorts
To install lexbor on macOS from MacPorts:
sudo port install lexbor
Source code
For building and installing Lexbor library from source code, use CMake (open-source, cross-platform build system).
cmake . -DLEXBOR_BUILD_TESTS=ON -DLEXBOR_BUILD_EXAMPLES=ON make make test
Please, see more information in documentation.
Single or separately
Single
liblexbor — this is a single library that includes all modules.
Separately
liblexbor-{module name} — libraries for each module.
You only need an HTML parser? Use liblexbor-html .
Separate modules may depend on each other. For example, dependencies for liblexbor-html : liblexbor-core , liblexbor-dom , liblexbor-tag , liblexbor-ns .
The liblexbor-html library already contains all the pointers to the required dependencies. Just include it in the assembly: gcc program.c -llexbor-html .
External Bindings and Wrappers
Elixir binding for the HTML module (since 2.0 version)
Crystal Fast HTML5 Parser with CSS selectors for Crystal language
Python binding for modest and lexbor engines.
D Fast HTML5 Parser with CSS selectors for D programming language
Ruby Fast HTML5 Parser with both CSS selectors and XPath support.
You can create a binding or wrapper for the lexbor and place the link here!
Documentation
Available on lexbor.com in Documentation section.
Roadmap
Please, see roadmap on lexbor.com.
Getting Help
AUTHOR
Alexander Borisov borisov@lexbor.com
COPYRIGHT AND LICENSE
Lexbor.
Copyright 2018-2024 Alexander Borisov
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Please, see LICENSE file.