文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Node.js中怎么构建一个交互式命令行工具

2024-04-02 19:55

关注

这期内容当中小编将会给大家带来有关Node.js中怎么构建一个交互式命令行工具,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。


开始

首先,创建一个新的 npm 包(NPM 是 JavaScript 包管理器)。

mkdir my-scriptcd my-scriptnpm init

NPM 将会问一些问题。随后,我们需要安装一些包。

npm install --save chalk figlet inquirer shelljs

这是我们需要的包:

创建一个 index.js 文件

现在我们要使用下述内容创建一个 index.js 文件。

#!/usr/bin/env node const inquirer = require("inquirer");const chalk = require("chalk");const figlet = require("figlet");const shell = require("shelljs");

规划命令行工具

在我们写命令行工具所需的任何代码之前,做计划总是很棒的。这个命令行工具只做一件事:创建一个文件

它将会问两个问题:文件名是什么以及文件后缀名是什么?然后创建文件,并展示一个包含了所创建文件路径的成功信息。

// index.js const run = async () => {  // show script introduction  // ask questions  // create the file  // show success message}; run();

***个函数只是该脚本的介绍。让我们使用 chalk 和 figlet 来把它完成。

const init = () => {  console.log(    chalk.green(      figlet.textSync("Node JS CLI", {        font: "Ghost",        horizontalLayout: "default",        verticalLayout: "default"      })    )  );} const run = async () => {  // show script introduction  init();   // ask questions  // create the file  // show success message}; run();

然后,我们来写一个函数来问问题。

const askQuestions = () => {  const questions = [    {      name: "FILENAME",      type: "input",      message: "What is the name of the file without extension?"    },    {      type: "list",      name: "EXTENSION",      message: "What is the file extension?",      choices: [".rb", ".js", ".php", ".css"],      filter: function(val) {        return val.split(".")[1];      }    }  ];  return inquirer.prompt(questions);}; // ... const run = async () => {  // show script introduction  init();   // ask questions  const answers = await askQuestions();  const { FILENAME, EXTENSION } = answers;   // create the file  // show success message};

注意,常量 FILENAME 和 EXTENSIONS 来自 inquirer 包。

下一步将会创建文件。

const createFile = (filename, extension) => {  const filePath = `${process.cwd()}/${filename}.${extension}`  shell.touch(filePath);  return filePath;}; // ... const run = async () => {  // show script introduction  init();   // ask questions  const answers = await askQuestions();  const { FILENAME, EXTENSION } = answers;   // create the file  const filePath = createFile(FILENAME, EXTENSION);   // show success message};

***,重要的是,我们将展示成功信息以及文件路径。

const success = (filepath) => {  console.log(    chalk.white.bgGreen.bold(`Done! File created at ${filepath}`)  );}; // ... const run = async () => {  // show script introduction  init();   // ask questions  const answers = await askQuestions();  const { FILENAME, EXTENSION } = answers;   // create the file  const filePath = createFile(FILENAME, EXTENSION);   // show success message  success(filePath);};

来让我们通过运行 node index.js 来测试这个脚本,这是我们得到的:

Node.js中怎么构建一个交互式命令行工具

完整代码

下述代码为完整代码:

#!/usr/bin/env node const inquirer = require("inquirer");const chalk = require("chalk");const figlet = require("figlet");const shell = require("shelljs"); const init = () => {  console.log(    chalk.green(      figlet.textSync("Node JS CLI", {        font: "Ghost",        horizontalLayout: "default",        verticalLayout: "default"      })    )  );}; const askQuestions = () => {  const questions = [    {      name: "FILENAME",      type: "input",      message: "What is the name of the file without extension?"    },    {      type: "list",      name: "EXTENSION",      message: "What is the file extension?",      choices: [".rb", ".js", ".php", ".css"],      filter: function(val) {        return val.split(".")[1];      }    }  ];  return inquirer.prompt(questions);}; const createFile = (filename, extension) => {  const filePath = `${process.cwd()}/${filename}.${extension}`  shell.touch(filePath);  return filePath;}; const success = filepath => {  console.log(    chalk.white.bgGreen.bold(`Done! File created at ${filepath}`)  );}; const run = async () => {  // show script introduction  init();   // ask questions  const answers = await askQuestions();  const { FILENAME, EXTENSION } = answers;   // create the file  const filePath = createFile(FILENAME, EXTENSION);   // show success message  success(filePath);}; run();

使用这个脚本

想要在其它地方执行这个脚本,在你的 package.json 文件中添加一个 bin 部分,并执行 npm link

{  "name": "creator",  "version": "1.0.0",  "description": "",  "main": "index.js",  "scripts": {    "test": "echo \"Error: no test specified\" && exit 1",    "start": "node index.js"  },  "author": "",  "license": "ISC",  "dependencies": {    "chalk": "^2.4.1",    "figlet": "^1.2.0",    "inquirer": "^6.0.0",    "shelljs": "^0.8.2"  },  "bin": {    "creator": "./index.js"  }}

执行 npm link 使得这个脚本可以在任何地方调用。

这就是是当你运行这个命令时的结果。

/usr/bin/creator -> /usr/lib/node_modules/creator/index.js/usr/lib/node_modules/creator -> /home/hugo/code/creator

这会连接 index.js 作为一个可执行文件。这是完全可能的,因为这个 CLI 脚本的***行是 #!/usr/bin/env node

现在我们可以通过执行如下命令来调用。

$ creator

上述就是小编为大家分享的Node.js中怎么构建一个交互式命令行工具了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-前端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯