Skip to content

Instantly share code, notes, and snippets.

@tommydunn
Forked from shijinnath/angular-structure
Created January 21, 2023 01:37
Show Gist options
  • Select an option

  • Save tommydunn/9e32edb465ca386665a1ac50b7c94e01 to your computer and use it in GitHub Desktop.

Select an option

Save tommydunn/9e32edb465ca386665a1ac50b7c94e01 to your computer and use it in GitHub Desktop.

Revisions

  1. @shijinnath shijinnath renamed this gist Apr 26, 2020. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. @shijinnath shijinnath revised this gist Apr 25, 2020. No changes.
  3. @shijinnath shijinnath revised this gist Apr 25, 2020. No changes.
  4. @shijinnath shijinnath revised this gist Apr 25, 2020. No changes.
  5. @shijinnath shijinnath renamed this gist Apr 25, 2020. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  6. @shijinnath shijinnath revised this gist Apr 25, 2020. 2 changed files with 77 additions and 5 deletions.
    77 changes: 77 additions & 0 deletions 2020-angular-structure.ts
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,77 @@
    app
    core
    guards
    auth.guard.ts
    module-import.guard.ts
    no-auth.guard.ts
    interceptor
    token.interceptor.ts
    error.interceptor.ts
    services
    service-a.service.ts
    service-b.service.ts
    components
    navbar
    navbar.component.html|scss|ts
    page-not-found
    page-not-found.component.html|scss|ts
    constants
    constant-a.ts
    constant-b.ts
    enums
    enum-a.ts
    enum-b.ts
    models
    model-a.ts
    model-b.ts
    utils
    common-functions.ts
    features
    feature-a
    components
    scoped-shared-component-a
    scoped-shared-component-a.component.html|scss|ts
    scope-shared-component-b
    scoped-shared-component-b.component.html|scss|ts
    pages
    page-a
    page-a.component.html|scss|ts
    page-b
    page-b.component.html|scss|ts
    models
    scoped-model-a.model.ts
    scoped-model-b.model.ts
    services
    scoped-service-a.service.ts
    scoped-service-b.service.ts
    feature-a-routing.module.ts
    feature-a.module.ts
    feature-a.component.html|scss|ts
    shared
    components
    shared-button
    shared-button.component.html|scss|ts
    directives
    shared-directive.ts
    pipes
    shared-pipe.ts
    shared.module.ts
    styles.scss
    styles
    app-loading.scss
    company-colors.scss
    spinners.scss
    variables.scss
    assets
    i18n
    lang-a.json
    lang-b.json
    images
    image-a.svg
    image-b.svg
    static
    structure-a.json
    structure-b.json
    icons
    custom-icon-a.svg
    custom-icon-b.svg
    5 changes: 0 additions & 5 deletions index.html
    Original file line number Diff line number Diff line change
    @@ -1,5 +0,0 @@
    <html>
    <body>
    <span>Hello World</span>
    </body>
    </html>
  7. @shijinnath shijinnath created this gist Apr 25, 2020.
    5 changes: 5 additions & 0 deletions index.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,5 @@
    <html>
    <body>
    <span>Hello World</span>
    </body>
    </html>