GitXplorerGitXplorer
o

meteor-debug

public
0 stars
1 forks
1 issues

Commits

List of commits on branch master.
Unverified
3397279f44a004819f94a24d2f6a508f0ef9539c

link to example

oorangewise committed 9 years ago
Unverified
df4a90799560c6dbc7eb9f877025399f75d05552

added example app by popular demand :)

oorangewise committed 9 years ago
Unverified
5699f3b17693dc22e6f751d34e378c8bf3ddd202

using npm 2.2.0 version of debug

oorangewise committed 9 years ago
Unverified
7c4399698fd6c882c39037acd97b95d75d66261e

updated package summary

oorangewise committed 10 years ago
Unverified
447dafc02132eebaa2e3574936420135af25f2f2

included .versions

oorangewise committed 10 years ago
Unverified
016053376937b45c6b47904164a303427085c638

removed single and double quotes mix

oorangewise committed 10 years ago

README

The README file for this repository.

Debug for Meteor

This Meteor smart package provides support for the npm debug package.

Installation

meteor add robodo:meteor-debug

Usage, both server and client side

var d = debug('orangewise');
d('a debug message');

Server side debug messages

The DEBUG environment variable is then used to enable these based on space or comma-delimited names. Here are some examples:

# log messages in the orangewise namespace
DEBUG=orangewise* meteor

# log all messages
DEBUG=* meteor

Client side debug messages

Debug works in the browser as well.

Type this in the console and refresh the page to log messages in the orangewise namespace:

debug.enable('orangewise*')

This will remain until you disable with

debug.disable()

Example App

Example Meteor App

License

MIT