cre-file is node.js CLI which generate file by referring the input text file.
The core reason behind creating this CLI is, I am maintain a punchlist, a text file where I planned the functions that I need to create and the function(js files) which resides in the same directory where the file is created. I got bored after doing this repeatedly for week. After watching Automating Tasks with Node CLIs (with Ahmad Awais) got inspired to automate this process using node CLI.
If your bored/lazy 🦥 to create tones of files, then use the CLI to automate🤖 that process.
- Install node.js
-
npm i -global cre-file
I have test this in only windows to be precise win 10, one I have test with other platform i will update the doc
- open cmd
-
cd <path_of_the_intended_directory>
- create a text file with file name that you want to generate inside "|<text_name>|". For multiple files separate each "|<text_name>|" by new line.
|Filename1.js|
|Filename2.txt|
-
cre-file gen <text_file_name>
punchlist.txt
[X] queue with array |queue_arr_imp.js|
[X] priority queue |priority_queue_imp.js|