On execution, Deno caches remote imports in a special directory specified by Deno Environment on the first run. The second time and so forth execution of the same piece of the code, i.e, next time you run the program, no downloads are made. If the program hasn't changed, it won't be retranspiled either.
It is cached in following folders as specified in the documentation
On Linux/Redox: **$XDG_CACHE_HOME/deno or $HOME/.cache/deno**
On Windows: **%LOCALAPPDATA%/deno (%LOCALAPPDATA% = FOLDERID_LocalAppData)**
On macOS: **$HOME/Library/Caches/deno**
In a project, I am working in, created a .deno_plugins
I am using deno_mongo(Native Deno MongoDB driver); is that the reason why this folder is generated? Why and when does .deno_plugins get generated?
Folder Structure of the project I am working on
Note:- PFA the folder structure image.