npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

amo.modules.logger

v1.0.1

Published

Console のラッパー

Downloads

2

Readme

Logger

Console のラッパー

インストール

https://www.npmjs.com/package/amo.modules.logger

npm install --save-dev amo.modules.logger

使い方

Logger = require "amo.modules.logger"

if DEBUG
  Logger.defaultLogger = Logger.create console # ログ情報は console に出力される
else
  Logger.defaultLogger = Logger.create {}      # ログ情報は破棄される
  # Logger.defaultLogger = Logger.create anotherReporter  # reporter オブジェクトを渡し、別の方法でログを収集することも可能

以下、Log.create に console を渡した場合の挙動を説明する ブラウザによっては使えない関数もあるが、その場合は単に無視される

log, debug, info, warn, error

console のそれと同じだが、先頭に時刻がつく
ただし、フォーマットテキストは使えない

logger = require("amo.modules.logger").defaultLogger # 以下略
logger.log   "hoge", "fuga"  # [LOG] 2015-11-28T11:56:48.197Z :: hoge fuga
logger.debug "hoge", "fuga"  # [LOG] 2015-11-28T11:56:48.197Z :: hoge fuga
logger.info  "hoge", "fuga"  # [LOG] 2015-11-28T11:56:48.197Z :: hoge fuga
logger.warn  "hoge", "fuga"  # [LOG] 2015-11-28T11:56:48.197Z :: hoge fuga
logger.error "hoge", "fuga"  # [LOG] 2015-11-28T11:56:48.197Z :: hoge fuga

logger.assert(expression, msgs...)

expression が false だった場合、msgs 以下が出力される

a = 1 + 2
logger.assert (a is 3), "hoge", "fuga" # a is 3 が true なので何も出力されない
logger.assert (a isnt 3), "hoge", "fuga" # a isnt 3 が false なので "hoge fuga" が出力される

logger.clear()

console の表示をクリアする

logger.dir(obj)

obj の持つプロパティを再帰的に表示する

obj =
  hoge: "fuga"
  fizzbuzz:
    1: 1
    2: 2
    3: "fizz"
    4: 4
    5: "buzz"
logger.dir obj # obj の持つプロパティが再帰的に表示される

logger.dirxml(node)

xml の中身を再帰的に表示する

node = document.getElementById "hoge"
logger.dirxml node

logger.table(obj)

例えば、以下の様な形式の object をいい感じに出力してくれる(詳しいことは未調査)

table = [
  {hoge: 1, fuga: "fugafuga", fizz: "buzz"}
  {hoge: 2, fuga: "hogehoge", fizz: "____"}
  {hoge: 2, fuga: "piyopiyo", fizz: ";;;;"}
]
logger.table table

logger.trace()

これまでのスタックトレースを出力する

f = -> logger.trace()
g = -> f()
h = -> g()
h()

logger.count([label])

この関数が呼び出された回数が表示される 引数なしでカウント出来るほか、 label ごとにカウントすることも可能

logger.group(name, block)

ログをグルーピングすることができる。 block 内で出力されるログは、すべて name というグループのログとして出力される グループは入れ子にすることも可能

logger.time(name, block)

block() の実行時間を出力する

logger.profile(name, block)

name という名のプロファイルを作成する(が、詳しいことは未調査)