Skip to content

Instantly share code, notes, and snippets.

@kdnk
Last active October 14, 2016 13:54
Show Gist options
  • Save kdnk/1334cd3cd47f6e02e169ee89bd2d771b to your computer and use it in GitHub Desktop.
Save kdnk/1334cd3cd47f6e02e169ee89bd2d771b to your computer and use it in GitHub Desktop.

Common.js

モジュールの作成

module.export = mymodule
// または
export.mymodule

モジュールの呼び出し

const mymodule = require('mymodule')

ブラウザで使用するために

  • CommonJSはブラウザで使用できない
  • CommonJSはNode.jsで使用できる

--> Node.jsで書いて、ブラウザで動くように変換する。

--> webpackやBrowserify

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment