60
57

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.

browserify + npmでReactを使う場合はNODE_ENVを設定するとよい

Posted at

Reactの内部には次のようなコードがいたるところにある。

if ("production" !== process.env.NODE_ENV) {
  console.log('debug message');
}

あらかじめビルド済みのreact.min.jsとかを使う場合はすでにproductionモードでビルドされてるので気にしなくていいけど、browserifyで自分でReactをビルドする場合はNODE_ENVを設定する必要がある。

のでproductionでは次のように環境変数を設定して実行するとよい。

$ NODE_ENV=production browserify src/app.js -o bundle.js

このようにしてビルドすると、Reactがenvifyというtransform packageを使っているため、次のように変換される。

if ("production" !== "production") {
  console.log('debug message');
}

さらにこれをuglifyにかけてminifyするとここに到達することはないdead codeということでコード自体を削ってくれる。

60
57
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
60
57

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?