Entries from 2019-04-17 to 1 day

Reactアンチパターン

■ bindするのは、アロー関数を使ってハンドラを書いていない時 constructor(props) { super(props); this.onTap = this.onTap.bind(this); } onTap() { console.log("tapped!!"); } onTap2 = () => { console.log("you don't need to bind this."); } render…

Create React App プロジェクトで Decorators を使う

MobXプロジェクトをCRAで作りたくて、Decoratorsを有効にしたいんだけど、という時に使用 create-react-app <app_name> --scripts-version custom-react-scripts参考medium.com</app_name>

npmのパッケージを列挙

npm

globalにインストールしたnpmパッケージを列挙したい時 npm list -g --depth 0参考https://medium.com/@alberto.schiabel/npm-tricks-part-1-get-list-of-globally-installed-packages-39a240347ef0