這次帶給大家使用Node.js做出命令列工具,使用Node.js做出命令列工具的注意事項有哪些,下面就是實戰案例,一起來看一下。
本文介紹了用Node.js寫一個簡單的命令列工具,分享給大家,具體如下:
# 作業系統需要為Linux
1. 目標
在命令列輸入自己寫的命令,完成目標任務
命令列要求全域有效
命令列要求可以刪除
命令列作用,產生一個文件,顯示目前的日期
2. 程式碼部分
# 新建一個文件,命名為sherryFile
文件sherryFile的內容
介紹: 產生一個文件,文件內容為當前日期和創建者
#! /usr/bin/env node console.log('command start'); const fs = require('fs'); let date = new Date().toLocaleDateString(); let data = date + '\n\t' + '——create By karuru'; fs.writeFile('./date.txt', data, 'utf8', (err) => { if (err) { console.log('sherryFile command wrong', err); return false; } console.log('writeFile success!!!!'); console.log('command end'); });
# 給該檔案賦予執行權限chmod 755 sherryFile
在該檔案所在的檔案路徑下輸入./sherryFile
#如果輸出以下內容,表示指令執行成功
# command startwriteFile success!!!!
command end# 在該檔案目錄下,會有一個新的date.txt檔案生成,內容如下#
2/28/2018# 將指令修改為全域有效ln sherryFile /usr/local/bin/sherryFile刪除指令
rm /usr/local/bin/sherryFile###相信看了本文案例你已經掌握了方法,更多精彩請關注###php中文網其它相關文章! ###############推薦閱讀:################readline怎麼逐行讀取並寫入內容######## #####Vuex的mutations與actions使用詳解#########
以上是使用Node.js做出命令列工具的詳細內容。更多資訊請關注PHP中文網其他相關文章!