Skip to content

Instantly share code, notes, and snippets.

@slightlytyler
Last active January 28, 2020 01:50
Show Gist options
  • Save slightlytyler/75f74b7e5a6b9f708d966c22d597784a to your computer and use it in GitHub Desktop.
Save slightlytyler/75f74b7e5a6b9f708d966c22d597784a to your computer and use it in GitHub Desktop.
Common Features Scenes
Low level Mid level High level
No domain Single domain Cross domain
Technical division Logical division No division
General Specialized Unique

Example structure

- src
  - common
    - components
      - Form
        - Form.ts
        - Field.ts
        - index.ts
      - ScrollView.ts
      - ...
    - helpers
      - removeItem.ts
      - snakeCase.ts
    - ...
  - features
    - articles
      - components
        - ArticleDetails.ts
        - ArticleForm.ts
      - hooks
        - useArticle.ts
        - useArticleCollection.ts
    - users
      - ...
  - scenes
    - HomepageScene.ts
    - NewArticleScene.ts
    - EditArticlesScene.ts
    - MyArticlesScene.ts
    - PublishingSettingsScene.ts
    - ...
  - main.ts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment