• Stars
    star
    554
  • Rank 77,807 (Top 2 %)
  • Language
    Rust
  • License
    MIT License
  • Created over 6 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A toy web browser implemented in Rust from scratch

Naglfar

CircleCI codecov

Naglfar is a toy web browser in Rust.

I'm focusing on developing a toy JavaScript engine: Rapidus.

Naglfar

Try Naglfar

Requisites

  • Nightly Rust (recommend rustup)
  • GTK (for gtk-rs)

Run

A blank window will appear if you run Naglfar with no option.

$ cargo run

Give the local html file (e.g. ./example/test.html):

$ cargo run file://`pwd`/example/test.html

Give the html file on the Internet: (But most of web sites are too much for Naglfar...)

$ cargo run https://maekawatoshiki.github.io/naglfar/example/test.html

Reference

Great thanks to robinson