2018-04-10から1日間の記事一覧

随時更新!!vim でよくやることまとめ!

vimで複数行の先頭に文字列追加 Ctrl + v -> 該当の行頭選択 -> Shift + i -> 文字列追加 -> ESC reference from http://itengine.seesaa.net/article/442698942.html

node でdebugしたいとき!!

$ node inspect index.js reference from https://nodejs.org/api/debugger.html

Automated testing with mocha / mocha 触ってみた

install Install with npm globally: $ npm install --global mocha npm install --save-dev mocha mocha とは Mocha is a feature-rich JavaScript test framework テスト全体を取りまとめて管理したり、画面に表示したりするためのもの chaiとの違い chai…