All Projects → takashiharano → debug.js

takashiharano / debug.js

Licence: MIT license
Debugger of JavaScript, by JavaScript, for JavaScript

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to debug.js

Cocoadebug
iOS Debugging Tool 🚀
Stars: ✭ 3,769 (+19736.84%)
Mutual labels:  debugger, log, logger, debug
Logcat
Android 日志打印框架,在手机上可以直接看到 Logcat 日志啦
Stars: ✭ 189 (+894.74%)
Mutual labels:  debugger, log, logger, debug
Acho
The Hackable Log
Stars: ✭ 189 (+894.74%)
Mutual labels:  debugger, log, logger, debug
Quicklogger
Library for logging on files, console, memory, email, rest, eventlog, syslog, slack, telegram, redis, logstash, elasticsearch, influxdb, graylog, Sentry, Twilio, ide debug messages and throw events for Delphi/Firemonkey/freepascal/.NET (Windows/Linux/OSX/IOS/Android).
Stars: ✭ 137 (+621.05%)
Mutual labels:  console, log, logger
ptkdev-logger
🦒 Beautiful Logger for Node.js: the best alternative to the console.log statement
Stars: ✭ 117 (+515.79%)
Mutual labels:  console, log, logger
Loglevelnext
A modern logging library for Node.js that provides log level mapping to the console
Stars: ✭ 33 (+73.68%)
Mutual labels:  console, log, logger
Ply
CSS inspection aided by visual regression pruning
Stars: ✭ 370 (+1847.37%)
Mutual labels:  debugger, dom, devtools
Go Logger
一个简单而强大的 golang 日志工具包,支持同步和异步输出到 命令行,文件, api 接口,文件支持按文件大小,文件行数,日期切分;A simple and powerful golang logging toolkit that supports synchronous and asynchronous output to the console, file, API interfaces, file support by file size, file line number, date sharding.
Stars: ✭ 152 (+700%)
Mutual labels:  console, log, logger
Ios Sdk
AppSpector is a debugging service for mobile apps
Stars: ✭ 56 (+194.74%)
Mutual labels:  debugger, logger, debug
logt
🖥️ A colourful logger for the browser
Stars: ✭ 35 (+84.21%)
Mutual labels:  console, log, logger
GoogleCloudLogging
Swift (Darwin) library for logging application events in Google Cloud.
Stars: ✭ 24 (+26.32%)
Mutual labels:  log, logger, debug
Gradle Test Logger Plugin
A Gradle plugin for printing beautiful logs on the console while running tests
Stars: ✭ 460 (+2321.05%)
Mutual labels:  console, test, logger
Frontendwingman
Frontend Wingman, Learn frontend faster!
Stars: ✭ 315 (+1557.89%)
Mutual labels:  console, dom, devtools
Signale
Highly configurable logging utility
Stars: ✭ 8,575 (+45031.58%)
Mutual labels:  console, log, logger
Log
Console.log with style.
Stars: ✭ 2,766 (+14457.89%)
Mutual labels:  console, log, devtools
consono
The most correct, informative, appealing and configurable variable inspector for JavaScript
Stars: ✭ 17 (-10.53%)
Mutual labels:  console, log, debug
webpack-log
A logger for the Webpack ecosystem
Stars: ✭ 18 (-5.26%)
Mutual labels:  console, log, logger
Wasmite
Now WebAssembly has proper testing, unit-testing and debugging 🤗
Stars: ✭ 20 (+5.26%)
Mutual labels:  debugger, test, debug
gdb-dashboard
Modular visual interface for GDB in Python
Stars: ✭ 8,699 (+45684.21%)
Mutual labels:  debugger, console
jsdom-devtools-formatter
Make jsdom elements look like real DOM elements in Chrome Devtools console
Stars: ✭ 40 (+110.53%)
Mutual labels:  dom, debug

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].