どのように私の最初のNPMパッケージを構築することができます、すべての起動、更新、使用から.
3390 ワード
npm init -y
パッケージを作成し、メインを作成します.jsファイルtouch main.js
add main.js file in bin section, if it is not then create one.
#!/usr/bin/env node
// at the top of the main.js file.
go write the logic of your package, what you want to do.
our simply write.
console.log('hello world this is my First Package.')
after doing this open command palete and type
npm login
# you will be propmt for username and password and OTP
npm publish
# this will publish your package to npm.
# make sure you are have unique name for your package.
パッケージの更新
for updating package go to your root file (main.js) and make your update.
After, this will update your package.
npm version patch/minor/major
# Patch: is nominal edits version updates last decimal.
# Minor: is minor bug fixed version, updates second last.
# Major: is major version updates Main.
パッケージの使用
for using packages in your local machine type
npm i -g <package-name>
# -g is for global package, so you can access it from anywhere in you computer
<package-name>
# to run your package.
# console.log('hello world this is my First Package.')
私が作ったパッケージは何ですか。どうやって使うの
これは私の最初のパッケージであり、AccuTrare私はこれの適切なユースケースを持っていないが、私は目的を学習のために構築されて
with this package you can convert you text to slug
makeslug convert this into slug
# convert-this-into-slug
使い方
npm i -g makeslug
makeslug <your-text>
だから、これは私の最初のパッケージの簡単な話です.🤝🏾接続してください
Twitter🕊️
ギタブ🐧
@theabhayprajapati
リンケディン📌
YouTube📺
Reference
この問題について(どのように私の最初のNPMパッケージを構築することができます、すべての起動、更新、使用から.), 我々は、より多くの情報をここで見つけました https://dev.to/theabhayprajapati/how-i-build-my-first-npm-package-and-you-can-everything-from-starting-updating-using-59nkテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol