brian-cooney / FromJS

See where each character on the screen came from in code.

Home Page:http://www.fromjs.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FromJS Build Status

FromJS is an experiental dynamic data-flow analysis tool for front-end JavaScript. It can tell you where each bit of content on a web page came from.

For example, some content might have been loaded using fetch, some might have been stored in localStorage, and some might have been hard-coded in the JavaScript code.

Getting started

Note: Currently FromJS only works with Node 9 or below

Install with npm install -g @fromjs/cli and then run fromjs. This will open a new Chrome browser window.

By default FromJS will launch a web server on localhost:7000, a proxy server on port 7001, and store the collected data in ./fromjs-session.

Loading pages will be slow! For large apps expect it to take several minutes. Maybe try something simple like Backbone TodoMVC to get started.

fromJSInspect

Instead of using the visual DOM Inspector you can also use the global fromJSInspect function in the inspected page.

If you control the code for the inspected page you can write something like this:

var greeting = "Hello world!"
fromJSInspect(greeting)

Or you can inspect DOM elements:

fromJSInspect(document.querySelector("#app"))

How it works

Read about it here, or watch this video.

Supported by

About

See where each character on the screen came from in code.

http://www.fromjs.com/

License:MIT License


Languages

Language:JavaScript 79.2%Language:TypeScript 20.3%Language:CSS 0.4%Language:HTML 0.1%