亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》
  • 首頁 > 
  • 教程 > 
  • 開發技術 > 
  • Linux系統中怎么使用Node.js構建根據詢問創建文件的命令行工具

Linux系統中怎么使用Node.js構建根據詢問創建文件的命令行工具

發布時間:2022-01-21 10:33:53 來源:億速云 閱讀:215 作者:iii 欄目:開發技術

這篇文章主要介紹了Linux系統中怎么使用Node.js構建根據詢問創建文件的命令行工具的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Linux系統中怎么使用Node.js構建根據詢問創建文件的命令行工具文章都會有所收獲,下面我們一起來看看吧。

Linux系統中怎么使用Node.js構建根據詢問創建文件的命令行工具

首先,創建一個新的 npm[2] 包(NPM 是 JavaScript 包管理器)。

mkdir my-scriptcd my-scriptnpm init

NPM 將會問一些問題。隨后,我們需要安裝一些包。

  1. npm install --save chalk figlet inquirer shelljs

這是我們需要的包:

? Chalk:正確設定終端的字符樣式? Figlet:使用普通字符制作大字母的程序(LCTT 譯注:使用標準字符,拼湊出圖片)? Inquirer:通用交互式命令行用戶界面的集合? ShellJS:Node.js 版本的可移植 Unix Shell 命令行工具

創建一個 index.js 文件

現在我們要使用下述內容創建一個 index.js 文件。

  1. #!/usr/bin/env node

  2. const inquirer = require("inquirer");

  3. const chalk = require("chalk");

  4. const figlet = require("figlet");

  5. const shell = require("shelljs");

規劃命令行工具

在我們寫命令行工具所需的任何代碼之前,做計劃總是很棒的。這個命令行工具只做一件事:創建一個文件。

它將會問兩個問題:文件名是什么以及文件后綴名是什么?然后創建文件,并展示一個包含了所創建文件路徑的成功信息。

  1. // index.js

  2. const run = async () => {

  3. // show script introduction

  4. // ask questions

  5. // create the file

  6. // show success message

  7. };

  8. run();

第一個函數只是該腳本的介紹。讓我們使用 chalk 和 figlet 來把它完成。

  1. const init = () => {

  2. console.log(

  3. chalk.green(

  4. figlet.textSync("Node JS CLI", {

  5. font: "Ghost",

  6. horizontalLayout: "default",

  7. verticalLayout: "default"

  8. })

  9. )

  10. );

  11. }

  12. const run = async () => {

  13. // show script introduction

  14. init();

  15. // ask questions

  16. // create the file

  17. // show success message

  18. };

  19. run();

然后,我們來寫一個函數來問問題。

  1. const askQuestions = () => {

  2. const questions = [

  3. {

  4. name: "FILENAME",

  5. type: "input",

  6. message: "What is the name of the file without extension?"

  7. },

  8. {

  9. type: "list",

  10. name: "EXTENSION",

  11. message: "What is the file extension?",

  12. choices: [".rb", ".js", ".php", ".css"],

  13. filter: function(val) {

  14. return val.split(".")[1];

  15. }

  16. }

  17. ];

  18. return inquirer.prompt(questions);

  19. };

  20. // ...

  21. const run = async () => {

  22. // show script introduction

  23. init();

  24. // ask questions

  25. const answers = await askQuestions();

  26. const { FILENAME, EXTENSION } = answers;

  27. // create the file

  28. // show success message

  29. };

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

下一步將會創建文件。

  1. const createFile = (filename, extension) => {

  2. const filePath ={filename}.${extension}“

  3. shell.touch(filePath);

  4. return filePath;

  5. };

  6. // ...

  7. const run = async () => {

  8. // show script introduction

  9. init();

  10. // ask questions

  11. const answers = await askQuestions();

  12. const { FILENAME, EXTENSION } = answers;

  13. // create the file

  14. const filePath = createFile(FILENAME, EXTENSION);

  15. // show success message

  16. };

最后,重要的是,我們將展示成功信息以及文件路徑。

  1. const success = (filepath) => {

  2. console.log(

  3. chalk.white.bgGreen.bold(Done! File created at ${filepath})

  4. );

  5. };

  6. // ...

  7. const run = async () => {

  8. // show script introduction

  9. init();

  10. // ask questions

  11. const answers = await askQuestions();

  12. const { FILENAME, EXTENSION } = answers;

  13. // create the file

  14. const filePath = createFile(FILENAME, EXTENSION);

  15. // show success message

  16. success(filePath);

  17. };

來讓我們通過運行 node index.js 來測試這個腳本,這是我們得到的:

Linux系統中怎么使用Node.js構建根據詢問創建文件的命令行工具

完整代碼

下述代碼為完整代碼:


  1. #!/usr/bin/env node

  2. const inquirer = require("inquirer");

  3. const chalk = require("chalk");

  4. const figlet = require("figlet");

  5. const shell = require("shelljs");

  6. const init = () => {

  7. console.log(

  8. chalk.green(

  9. figlet.textSync("Node JS CLI", {

  10. font: "Ghost",

  11. horizontalLayout: "default",

  12. verticalLayout: "default"

  13. })

  14. )

  15. );

  16. };

  17. const askQuestions = () => {

  18. const questions = [

  19. {

  20. name: "FILENAME",

  21. type: "input",

  22. message: "What is the name of the file without extension?"

  23. },

  24. {

  25. type: "list",

  26. name: "EXTENSION",

  27. message: "What is the file extension?",

  28. choices: [".rb", ".js", ".php", ".css"],

  29. filter: function(val) {

  30. return val.split(".")[1];

  31. }

  32. }

  33. ];

  34. return inquirer.prompt(questions);

  35. };

  36. const createFile = (filename, extension) => {

  37. const filePath ={filename}.${extension}“

  38. shell.touch(filePath);

  39. return filePath;

  40. };

  41. const success = filepath => {

  42. console.log(

  43. chalk.white.bgGreen.bold(Done! File created at ${filepath})

  44. );

  45. };

  46. const run = async () => {

  47. // show script introduction

  48. init();

  49. // ask questions

  50. const answers = await askQuestions();

  51. const { FILENAME, EXTENSION } = answers;

  52. // create the file

  53. const filePath = createFile(FILENAME, EXTENSION);

  54. // show success message

  55. success(filePath);

  56. };

  57. run();

使用這個腳本

想要在其它地方執行這個腳本,在你的 package.json 文件中添加一個 bin 部分,并執行 npm link:

  1. {

  2. "name": "creator",

  3. "version": "1.0.0",

  4. "description": "",

  5. "main": "index.js",

  6. "scripts": {

  7. "test": "echo \"Error: no test specified\" && exit 1",

  8. "start": "node index.js"

  9. },

  10. "author": "",

  11. "license": "ISC",

  12. "dependencies": {

  13. "chalk": "^2.4.1",

  14. "figlet": "^1.2.0",

  15. "inquirer": "^6.0.0",

  16. "shelljs": "^0.8.2"

  17. },

  18. "bin": {

  19. "creator": "./index.js"

  20. }

  21. }

執行 npm link 使得這個腳本可以在任何地方調用。

這就是是當你運行這個命令時的結果。

  1. /usr/bin/creator -> /usr/lib/node_modules/creator/index.js

  2. /usr/lib/node_modules/creator -> /home/hugo/code/creator

這會連接 index.js 作為一個可執行文件。這是完全可能的,因為這個 CLI 腳本的第一行是 #!/usr/bin/env node。

現在我們可以通過執行$ creator命令來調用。

關于“Linux系統中怎么使用Node.js構建根據詢問創建文件的命令行工具”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“Linux系統中怎么使用Node.js構建根據詢問創建文件的命令行工具”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

无极县| 上林县| 宁德市| 白朗县| 唐山市| 亚东县| 潮州市| 马鞍山市| 灵璧县| 庆安县| 海城市| 青铜峡市| 万载县| 枣强县| 青岛市| 绵阳市| 肃南| 深水埗区| 洪湖市| 武定县| 玉树县| 莫力| 彭水| 寻甸| 尖扎县| 西青区| 绥芬河市| 武宁县| 瑞昌市| 镇平县| 柳河县| 大兴区| 南和县| 新宾| 丰城市| 吉林市| 岳普湖县| 神木县| 柘城县| 浑源县| 普安县|