DEV Community

Discussion on: Creating a command-line app in Node.js: Argument Parsing

Collapse
 
elaspog profile image
László Pogány

I can write feedback later of course, but my most important suggestions in every case would be:

  • Everything need to be reproducible and verifiable by others

    • This is why the professionals use git where they put their code/configuration/settings etc. and attach the URL for the example before/after the article
  • If you write tutorials for beginners (I can assume this by the topic choice), everything should be written in step-by-step manner (where to put exactly what, what to uncommet, or where to cut from, what are the main steps, main stages and snapshots of the code for a given step/functionality etc.)

  • What are the requirements/environment/dependencies (that's OK in your case because npm makes this easy), how to install or set them. The dependencies/URLs might break by time, they always should be checked whether they are still valid.

Thread Thread
 
kumareth profile image
Kumar Abhirup

Thanks, will look forward to implementing these from next tutorials I create! Will also update the last ones.