Structure

Mevn stack folder structure 🗂️

The new MEVN js stack follows a different approach and they no longer have a separate server-side folder and client-side folder.

  • BOOSTACK-CODEBASE

    • Public

      • emails

      • images

      • index.html

      • ...

    • server (Backend)

      • api

        • auth

          • auth-controller.js

          • auth-routes.js

        • team

          • team-controller.js

          • team-routes.js

        • ...

      • config

      • model

      • security

      • services

      • index.js

      • routes.js

      • ...

    • src (Frontend)

      • assets

      • components

      • layout

      • pages

      • router

      • services

      • App.vue

      • main.js

      • ...

    • .env

    • package.json

    • node_modules

Last updated

Was this helpful?