A fully-modern text-based browser, rendering to TTY and browsers
Go to file
2018-06-23 19:42:51 +08:00
contrib Tag before reseting during release 2018-06-18 20:27:10 +08:00
interfacer F1 key to open help tab 2018-06-23 19:27:55 +08:00
webext Don't put any HTML in plain raw pages 2018-06-23 19:42:51 +08:00
.dockerignore Automate releases 2018-01-28 16:08:19 +08:00
.eslintrc Refactored webext background script 2018-01-10 22:54:51 +08:00
.gitignore Refactor Browsh Go code into package 2018-04-01 16:31:25 +08:00
.nvmrc First draft of integration tests 2018-01-23 20:04:23 +08:00
.travis.yml Version 1.0.2 2018-06-10 22:30:44 +08:00
Dockerfile Fixes to get the Docker image building again 2018-06-12 15:40:49 +08:00
LICENSE Added license and updated README 2016-05-21 18:38:46 +09:00
README.md Extra loggina and README updates 2018-06-23 19:27:15 +08:00

Browsh Build Status

A fully interactive, realtime and modern browser rendered to TTY

or Firefox in your terminal 😲

// Gifs go here

Why?

Not all the world has good Internet.

If all you have is a 3kbps connection tethered from a phone then it's good to SSH into a server and browse the web through elinks. That way the server downloads the web pages and uses the limited bandwidth of an SSH connection to display the result. But it lacks JS support and all that other modern HTML5 goodness. So Browsh is simply a way to have the power of a remote server running a modern browser, but interfaced through the simplicity of a terminal and very low bandwidth.

Why not VNC? Well VNC is certainly one solution but it doesn't quite have the same ability to deal with extremely bad Internet. Also, Browsh can use MoSH to further reduce the bandwidth and stability requirements of the connection. Mosh offers features like automatic reconnection of dropped connections and diff-only screen updates. Furthermore, other than SSH or MoSH, Browsh doesn't require a client like VNC.

Another reason could be to offload the battery-drain of a modern browser from your laptop. If you're a CLI-native, then you could potentially get a few more hours life if your CPU-hungry browser is running somehwere else on mains electricity.

But of course the biggest reason for Browsh is probably just that it's cool geekery. You may just appreciate the sheer simplicty of browsing a text-based web in your terminal.

Installation

Download a binary from the releases (~2-6MB). You will need to have Firefox >=57 aleady installed.

Or download and run the Docker image (~230MB) with: docker run -it tombh/texttop

Usage

Most keys and mouse gestures should work as you'd expect on a desktop browser.

For full documentation see the documentation.

Contributing

To setup a dev env you will need NodeJS and Golang installed. If you get stuck setting up your env, take a look in .travis.yml, it has to setup everything from scratch for every push to Github.

I'd recommend [nvm](https://github.com/creationix/nvm) for NodeJS - note that nvm install will automatically parse the .nvmrc version in this repo to get the correct NodeJS version. For Golang it's probably best to just use your OS's package manager. The current Golang version being used is stored in .travis.yml.

You'll then need to install the project dependencies. For the webextension, just run: npm install inside the webext/ folder. For the CLI client you will first need to install dep, there is a script for this in interfacer/contrib/setup_go.sh. I don't fully understand Golang's best practices, but it seems you are forced to keep your Go project's code under $GOPATH/src, you might be able to get away with symlinks. Anyway, to install the dependencies use: dep ensure inside the interfacer/ folder.

Then the ideal setup for development is:

  • have Webpack watch the JS code so that it rebuilds automatically: webpack --watch
  • run the CLI client without giving it the responsibility to launch Firefox: go run ./interfacer/*.go -use-existing-ff
  • have Mozilla's handy web-ext tool run Firefox and reinstall the webextension everytime webpack rebuilds it: (in webext/dist) web-ext run --verbose

Tests

For the webextension: in webext/ folder, npm test For CLI unit tests: in /interfacer run go test src/browsh/*.go For CLI E2E tests: in /interfacer run go test test/tty/*.go FOr HTTP Service tests: in /interfacer run go test test/http-server/*.go

License

GNU General Public License v3.0