smz8023 / debug.js

Debugger of JavaScript, by JavaScript, for JavaScript

Home Page:https://debugjs.net

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

debug.js

debug.js is an embeddable JavaScript debugger for web development.

It allows you to debug easily without the F12 Tools. The library has useful features such as logging, DOM element inspector, screen measure, file viewer, command-line, original script interpreter for automated testing, etc.

Quick Start

Logging:

<!DOCTYPE html>
<html>
<head>
  <script src="debug.js"></script>
  <script>
    function foo() {
      log('button was clicked');
    }
  </script>
</head>
<body>
  <button onclick="foo();">BUTTON</button>
</body>
</html>

Documents & Demos

For more information on how to use, see: https://debugjs.net/

sample

About

Debugger of JavaScript, by JavaScript, for JavaScript

https://debugjs.net

License:MIT License


Languages

Language:JavaScript 70.8%Language:HTML 29.2%Language:Batchfile 0.0%