NE-SmallTown / book

Web browser engineering (a book)

Home Page:https://browser.engineering/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Web Browser Engineering

This is the source code to Web Browser Engineering, my book on how web browsers work. The best way to read the book is online.

Building the book

If you want to build from source, run:

make book draft blog

The source code contains:

  • The Markdown source for the book text, in book/
  • A template and code for converting the book to HTML, in infra/
  • Chapter-by-chapter implementations of the browser, in src/
  • Styling for the book's website, in www/
  • The book's built-in feedback system, in www/, including JavaScript and the Python backend.

We prefer to receive typos and small comments on the text using the book's built-in feedback tools, which you can enable with Ctrl+E.

You can run the book's built-in checks with:

make lint

We're always happy to hear from readers and from educators who want to use the book. Please email us!

Running the browser

Code for the browser developed in the book can be found in src/, in files named lab1.py, lab2.py, and so on, corresponding to each chapter.

To run it, you'll need to install:

  • A recent Python 3; version 3.9.10is known to work, but older versions probably will too.
  • The tkinter package, part of the Python standard library but often isn't included in pre-installed Pythons on macOS and Linux. You can check by running python3 -m tkinter, which should open a test window.
  • For Chapter 9+, the dukpy package. Consult that chapter for installation instructions.
  • For Chapter 11+, the skia and pysdl2 packages. Consult that chapter for installation instructions.

Once you have the above, you can run, say, the browser as of the end of Chapter 3 like so:

cd src/
PYTHONBREAKPOINT=0 python3 lab3.py https://browser.engineering

Every chapter can be run in a similar fashion.

For chapters 8 onward, there's also a "guest book" web application, which you can run with:

cd src/
PYTHONBREAKPOINT=0 python3 server8.py

Like the browser, there are different versions of the server for different chapters, named server8.py, server9.py, and so on.

You can also run the book's unit tests with:

make test

About

Web browser engineering (a book)

https://browser.engineering/

License:MIT License


Languages

Language:Python 77.2%Language:JavaScript 12.5%Language:HTML 5.5%Language:CSS 2.8%Language:Lua 1.0%Language:Makefile 0.8%Language:Awk 0.1%Language:Shell 0.0%