Skip to content

ASSERT-KTH/L3-37-Browser

Repository files navigation

Mini browser through the looking glass Build Status

L3-37 is a mini web browser that superimposes a view of the structure of the web page on top of the actual page. Our goal is to reveal and embody the organization and dynamics of software that runs the world wide web. Citizens interact with browsers worldwide, every day and we which to offer a looking through the glass of web content.

This browser is developed as a tribute to the Web stalker,

Preview

Input the url and press enter

Run dev

npm run start
# if MacOS or linux
npm run electron-dev
# else
npm run electron-win

Developing tips

Access electron from host

const electron = window.require('electron');
const fs = electron.remote.require('fs');
const ipcRenderer  = electron.ipcRenderer;

See also