I'm just starting to play with my first .Net Core applications and am trying to use npm for client-side libraries. They get added to node_modules but aren't "installed" to wwwroot. My question appears to have been asked before without answers:
I've tried to install cropperjs. That works insofar that the files are downloaded and added to the node_modules folder:
- projectfolder
- node_modules
- cropperjs
- dist
- src
- package.json, changelog, readme, license etc. files
- cropperjs
- node_modules
Now how would I get these files into my wwwroot directory to use them? The documentation is slightly confusing I'm afraid. Thanks for enlightening me!