Parents :

Date and time note was created$= dv.current().file.ctime
Date and time note was modified$= dv.current().file.mtime

What is npx?

What is that npx thing? npx ships with npm and lets you run locally installed tools.

Node modules should be removed before moving or moving the files

I encountered that Node modules were making the system hang while copying/moving and after searching and asking some folks from the internet I was able to make out that Node Modules should never be copied (atleast when you are moving to other operating systems such as Linux ) and should be purged using some cli tool or other tools. Copying Node Modules can lead to issues such as not being able to copy as well as if copied too they would not be able to run on other operating systems

So the tip is to never copy the node modules and purge them (i used NPKILL. for this)

Related

References

Footnotes