0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

coffeescriptをnode-inspectorでデバッグする

Last updated at Posted at 2015-01-07

CoffeeScriptなんですが、middleman使ってるとデバッグしにくい。
慣れないうちはそもそもちゃんと意図したjavascriptの変換されてるの?みたいなところでつまづく。

そこでnode-inspectorでデバッグしてみる。

インストール方法

前提としてnpmがインストールされてる必要があります。

デバッグ方法

インストールしたら、下記コマンドで対象ファイルをコンパイル、node-debugの起動を行う。

coffee -c -m myscript.coffee
node-debug myscript.js

思ったこと

コンパイル時点でエラーになって、メッセージがでる。
コンパイルが成功していればブラウザでInspectorを立ち上げられる。

でもよく考えたら、コンパイルの時点でエラーになるんなら他の方法でもありかも。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?