概要
- packge.json
- index.js
- test
- 公開
まずはじめにpackage.json
そのモジュールの説明書となるpackage.jsonを作成します。
https://docs.npmjs.com/creating-node-js-modules
{
"name": "パッケージ名",
"description": "",
"version": "1.0.0",//バージョン
"main": "ここがエントリポイントとなるjsファイル、例index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/あなた様の/my_package.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/あなた様の/my_package/issues"
},
"homepage": "https://github.com/あなた様の/my_package"
}
エントリーポイントとなるjsファイルの作成(index.js)
次に実際のプログラムを作成していきます
exportsが必須です。(そりゃそうか。。)
exports.printMsg = function() {
console.log("This is a message from the demo package");
}
テストの作成
todo
公開してみる
todo
参考
https://docs.npmjs.com/creating-node-js-modules
最近のコメント