Skip to content

binnng/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]);

预览

preview

Demo

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

安装

  • 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