在手机上打印调试信息。
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.silence()
http://binnng.github.io/debug.js/demo/index.html
debug.log()
debug.success()
debug.warn()
debug.error()
debug.danger()
- npm(推荐)
npm install m-debug.js
- bower
bower install binnng/debug.js
- component
component install binnng/debug.js
如果你使用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