首页 > Web开发 > 详细

[Custom CLI] Develop and Publish a Node.js CLI from Scratch

时间:2020-03-01 09:59:57      阅读:60      评论:0      收藏:0      [点我收藏+]

Before you use any frameworks, you should know the fundamentals of what makes Node CLI‘s tick. Here we explain everything you need to know to write a complete Node.js CLI from scratch, parse arguments, publish it to NPM for users, and set up yarn symlinks for optimal developer experience.

 

Create a mycli.js file, in the very first line, we will add this code

#!/usr/bin/env node

It tells the running env. The benenfits for that is in order to run mycli.s file:

// Before
node ./mycli.js

// After
./mycli.js

 

Pass the argv:

We also want to pass some information into file, in order to do some operations.

./mycli.js myapp --name=Answer1215

They way to get the information is using:

process.argv

If we log the value:

[ ‘/usr/local/bin/node‘,
  ‘/Users/zhentianwan/Documents/programming/cus-cli/mycli.js‘,
  ‘myapp‘,
  ‘--name=good‘ ]

The first two is always there, the other information you pass into the cli, it will be push to the array.

 

In order for easy testing cli, we can publish to npm, or just using:

yarn link --global

 

[Custom CLI] Develop and Publish a Node.js CLI from Scratch

原文:https://www.cnblogs.com/Answer1215/p/12387775.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!