From the course: Angular: Building Large Applications

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Project organization

Project organization - Angular Tutorial

From the course: Angular: Building Large Applications

Start my 1-month free trial

Project organization

- [Instructor] The first step towards supporting a growing application is to probably organize your projects so you don't have to refactor too much later on. Planning ahead for this will save you tons of work. The first step is to organize your folder structure and you can do it in two ways, by type of files or features. They both have their benefits and it all depends on your style of programming or distenders within your enterprise. The first approach, structures are filed by the type of files and then combines them all into a contextual folder. For example, the folder components would have all the components and the folder service as all the service files. The second approach, structures your files by functions or features. For example, if you add a CRM application you'd have a compact list folder then inside of it you'd have all the components, modules, services, and whatever else is related to provide that feature. When organizing your components make sure to include all your app…

Contents