Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Web stacks - listing of common web stacks/environments

Just out of curiosity - I know there's LAMP - Linux, Apache, MySQL, and PHP. But what other abbreviations for web stack alternatives are there? anything like LAMR - Linux, Apache, MySQL Ruby on Rails?

Could someone please provide a listing of various common web stacks/environments?

like image 321
George K. Avatar asked Feb 20 '23 04:02

George K.


1 Answers

MEAN

  • MongoDB
  • express.js
  • angular.js
  • node.js

The common denominator among these technologies is javascript. Developers using the MEAN stack can reason about the data being stored, searched, and displayed in the same way across the technologies.

This stack also usually has an Nginx server in front of it for security and load balancing.

like image 70
Wes Widner Avatar answered Mar 10 '23 12:03

Wes Widner