Skip to content

Latest commit

 

History

History
27 lines (26 loc) · 516 Bytes

File metadata and controls

27 lines (26 loc) · 516 Bytes

N-Layers (also known as N-Tiers) architecture.

  • src/
    • entities/
      • User.js
      • Product.js
    • factories/
      • UserFactory.js
      • ProductFactory.js
    • repositories/
      • UserRepository.js
      • ProductRepository.js
    • routes/
      • UserRoute.js
      • ProductRoute.js
    • services/
      • UserService.js
      • ProductService.js
    • util/
      • Validation.js
      • ErrorHandling.js
    • handler/
      • RouteHandler.js
  • tests/
    • integration/
      • UserIntegrationTest.js
      • ProductIntegrationTest.js