@dnj0104 after copying the module folder

as part of a module, they may use libraries, which are not installed by Magic Mirror

the module instructions (mostly) say
after git clone
cd (change directory) into module folder
then run npm install

So, we need to replicate that

the module files are there
how do you know if u need to do this step

if inside the module folder there is a file called package.json
then we need to do the npm install, BUT we may have junk loaded already

SO, we need to delete where the libs are stored, node_modules folder
(we are IN the module folder, right)?

# remove the libraries folder and all its contents rm -rf node_modules # rebuild the library folder npm install