npm module を公開しよう
npm registry のアカウントを作ろう
npm adduserUsername: superyusuke
Password:
Email: (this IS public) super.yusuke0000@gmail.compackage.json を作ろう
npm init -y{
"name": "your-package-name",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC"
}node module を作ろう
npm package を公開しよう
npm を インストールして使おう
Last updated