I develop my website on my computer with Laravel and VueJS. On my computer I can run npm run dev
without problems.
When I commit to Github my website, there is a webhook that runs a script on my hosting to update the real website (on OVH).
My hosting his is a shared hosting (OVH) with SSH access, there is NodeJS available but not NPM.
How could I run npm run dev
from my shared hosting ? Is there a way to run this with NodeJS ?
Thanks.