Thanks to visit codestin.com
Credit goes to github.com

Skip to content

akhilmoogi/fullstack-javascript-architecture

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Full-Stack JavaScript Architecture

Opinionated project architecture for Full-Stack JavaScript Applications. (work in progress)

Backend

  • API
  • Database
  • Proxy

Frontend

  • Landing
  • Web
  • Mobile
    • iOS
    • Android

Deployment

  • Docker

Core Structure

fsja
  ├── backend
  │   ├── api
  │   │   > NodeJS
  │   │   > PORT 8000
  │   │   > api.example.com
  │   │
  │   ├── database
  │   │   > MongoDB
  │   │   > PORT 27017
  │   │   > api.example.com
  │   │
  │   └── proxy
  │       > NGINX
  │
  ├── deployment
  │   > Docker Compose
  │
  ├── frontend
  │   ├── app
  │   │   ├── mobile
  │   │   │   > React Native
  │   │   │   > iOS
  │   │   │   > Android
  │   │   │
  │   │   └── web
  │   │       > React
  │   │       > PORT 5000
  │   │       > app.example.com
  │   │
  │   └── landing
  │       > Static HTML
  │       > PORT 3000
  │       > example.com
  │
  └── README.md (you are here)

About

✍️ Opinionated project architecture for Full-Stack JavaScript Applications.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 92.3%
  • Java 2.8%
  • Objective-C 2.0%
  • HTML 1.2%
  • Starlark 0.9%
  • Ruby 0.3%
  • Other 0.5%