Skip to content
🏛 22120 - An archivist browser controller that caches everything you browse, a library server with full text search to serve your archive.
JavaScript HTML
Branch: master
Clone or download
Latest commit 0e7120d Dec 23, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
public "Basic serve structure" Dec 21, 2019
.gitignore "OK" Dec 22, 2019
LICENSE Initial commit Dec 20, 2019
README.md typo Dec 23, 2019
app.js "Works to save and serve" Dec 22, 2019
archivist.js "Works to save and serve" Dec 22, 2019
args.js "Works to save and serve" Dec 22, 2019
common.js "More in depth" Dec 21, 2019
index.js "Basic serve structure" Dec 21, 2019
libraryServer.js "Basic serve structure" Dec 21, 2019
package.json "Works to save and serve" Dec 22, 2019

README.md

22120

🏛 - An archivist browser controller that caches everything you browse, a library server with full text search to serve your archive.

If you want to get an email when the next major version drops, add your email to this list

Running

Save your stuff

  1. Open your browser with --remote-debugging-port=9222
  2. Clone this repo and inside its directory run npm i && npm run save

Serve your stuff

  1. Open your browser with --remote-debugging-port=9222
  2. Inside the repo directory run npm run serve
  3. Browse what you browsed before (you can switch off internet and it still works).

Initial goal

Proof of concept of the ability to browse and transparently save everything, then switch off internet and browse it later as if you were still online.

Inspired by people talking about enriching bookmarks and browser history with the ability to save all your browsing data and search it, even independent of you being online or the site being online.

How it works

Uses DevTools protocol to intercept all requests, and caches responses against a key made of (METHOD and URL) into an in memory map which it saves to disk every 10 seconds.

So far

  • The library server hasn't been implemented.
  • Only saving and serving with the archivist works.
  • You can use it by opening your browser with --remote-debugging-port=9222 then running npm run save. Everything you browse will be saved to cache.json
  • You can switch off your internet and run npm run serve (also with your browser on remote debugging) and browse everything you just saved as normal.

Future

  • Implement library server so we can actually save the responses to disk in the "file tree structure" of the site you browse, then serve it, and also index and search it. This will involve also serving request/response metadata and converting between the request/response format and a file format.
  • The idea is that you can browse a site and end up with a static directory structure of assets that you can then serve on a local static server and browse it basically as normal.
  • Generally improve code and efficiency.

The goal

To build a personal archive that you can search and use that does not depend on the continued existence of those sites, or on having internet, but that works just like you are browsing them.

Stuff that will probably be hard (and I haven't thought much about)

  • Streaming content (audio, video)
  • "Impure" request response pairs (such as if you call GET /endpoint 1 time you get "A", if you call it a second time you get "AA", and other examples like this).
  • WebSockets (how to capture and replay that faithfully?)

There are probably "good enough" solutions to all these, and likely some or all of them already exist and have been thought up by other smart people.

More Instructions

Can I use this with a browser that's not Chrome-based?

Probably not. At least not yet.

Higher level description

Basically this is like a "full spectrum record" of your browsing history, with all assets and their content saved. It's like going on holiday and taking a GoPro that saves everything you look at, except that the quality is such that when you replay it, it's actually the same as experiencing it the first time.

You can’t perform that action at this time.