m-debug.js

1.0.1 • Public • Published

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.silence()

预览

preview

Demo

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

API

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

如果你使用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

Readme

Keywords

Package Sidebar

Install

npm i m-debug.js

Weekly Downloads

1

Version

1.0.1

License

MIT

Last publish

Collaborators

  • binnng