BrowsEx is a toy TUI browser, mostly built as a bit of fun.
I'd recommend you don't use this to browse the web unless you trust the urls you're hitting.
If available in Hex, the package can be installed as:
- Add
brows_ex
to your list of dependencies inmix.exs
:
```elixir
def deps do
[{:brows_ex, "~> 0.1.0"}]
end
```
- Ensure
brows_ex
is started before your application:
```elixir
def application do
[applications: [:brows_ex]]
end
```
- Handle gzipped reqs better.
- Currently we naively unzip these, unsure if that's wise (benoitc/hackney#155)
- SSL verification.
- Fill out test suite.
- Better documentation, specs, types.
- Handle forms/inputs.
- History/back functionality.