0
1

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.

シンプルにmodule.exports

Last updated at Posted at 2019-05-31

一番簡単なmodule.exports

jsのcall backの中身をexportして見ようと思ったのですが、思いの外簡単なやり方が見つからなかったので、簡単メモです。

exportするobjectを作ります。

hell.js
var hell={
}
module.exports=hell

上のobjectにstringを戻す関数を書きます。

hell2.js
var str
var hell={
getStr=function(){
str="hell"
return str
}//fun
}
module.exports=hell

"hello world"なのですが、"hell"の方が短いのと、プログラミングはhell(地獄)です。
次にhellをgetします。

get.js
var tmp=require("./hell")
console.log (tmp.getStr())
node get.js

outputhell

"hell"が出力されます。
functionを書かずに、objectから直接stringを取り出す方法はこれです。

hell3.js
var str
var hell={
str:"hell"
}
module.exports=hell
get.js
var tmp=require("./hell")
console.log (tmp.str)
node get.js

outputhell

無事stringが取り出せませした。

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?