Skip to content

xianxingzhe/debug.js

 
 

Repository files navigation

debug.js

在手机上打印调试信息。

快速上手

debug.success("This is success message:)");
debug.error("This is error message:)");
debug.log("This is primary message:)");
debug.log({a: 1, b: 2});
debug.log([1,2,3]);

debug.js为了方便调试,会默认开启捕捉浏览器的报错。如果你不需要这个功能,可以这样禁止它:

debug.guai()

预览

preview

Demo

http://binnng.github.io/debug.js/demo/index.html

API

debug.log()
debug.success()
debug.warn()
debug.error()
debug.danger()

安装

  • bower
bower install binnng/debug.js
  • component
component install binnng/debug.js

angular

如果你使用angular:

var app = angular.module("app", [
	"binnng/debug"
]);

app.controller("ctrl", function($debug) {
	$debug.success("Welcome to debug.js");
});

主页

http://binnng.github.io/debug.js

源码

http://binnng.github.io/debug.js/docs/debug.html

协议

MIT

About

在手机上打印调试信息。

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 51.9%
  • CoffeeScript 46.7%
  • Makefile 1.4%