Framework Checker
Wappalyzer (Registration required for free account)
Use this browser extension easily to integrate into your source code analysis. You can understand a web framework used and programming language.
You can guess a project structure and what files (source code/configuration) might be available from the web site.
node_project/
├── src/
│ ├── controllers/
│ ├── middleware/
│ ├── models/
│ ├── routes/
│ ├── services/
│ ├── utils/
│ └── app.js
├── public/
│ ├── images/
│ ├── stylesheets/
│ └── scripts/
├── views/
│ ├── partials/
│ └── layouts/
├── test/
│ ├── unit/
│ ├── integration/
│ └── e2e/
├── config/
│ ├── development/
│ ├── production/
│ └── index.js
├── static
├── logs/
├── .gitignore
├── .env
├── .env.local
├── package.json
└── README.md
Last updated