DEV Community

Gülsen Keskin
Gülsen Keskin

Posted on

Angular Structure

|-- app
    |-- components
    |-- directives
    |-- mocks
    |-- modules
        |-- general   (contains the elements found in all project types)
            |-- not-found
            |-- home
            |-- contact
            |-- login
            |-- signup
        |-- application  (contains the specific elements to our project)
            |-- item01
            |-- item02
            |-- ....
            |-- itemXX
     |-- pipes
     |-- services
|-- assets
|-- environnement

Enter fullscreen mode Exit fullscreen mode

source

Top comments (0)