I am unexperienced with front-end technologies and I've started to learn AngularJS today. I have the following project structure:
|-webapp
|
|-css
|-lib
|-scripts
|-index.html
I analysed some example projects and I noticed that the code within scripts folder often refers to routines that exist in the lib folder. What I want to know is how the lib folder is supposed to be populated in the first place? Is there a common procedure to do this, e.g. an auto-import operation that analises my code and automatically places the corresponding dependencies in lib? In line with the latter, does an IDE such as IntelliJ provide any feature to accomplish this?
Thank you for your help.