Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why is javascript not part of the project architecture?

I recently came across a question where someone asked what architecture we use in the company and someone else replied LAMP.

I am not sure why we do not include javascript as a part of the architecture. Is it implied? Or is there something I am missing? What if someone is using say ECMA script or VB script instead of javascript?

like image 446
pinaki Avatar asked Dec 05 '22 00:12

pinaki


2 Answers

Because "LAMP" only addresses the technologies that run on the server-side, not what runs on the client-side, like the browser, or JavaScript within the browser. (And at the time "LAMP" was coined, JavaScript saw much less usage than it does today.)

like image 198
Adam Vandenberg Avatar answered Dec 26 '22 02:12

Adam Vandenberg


JavaScript is a client-side technology, while Linux, Apache, MySQL and Perl/Python/PHP all have to do with the server.

There are server-side JavaScript implementations like Aptana Jaxer and node.js, but JavaScript is most commonly-used for browser behavior, and thus doesn't have much to do with the server other than through Ajax requests.

like image 36
BoltClock Avatar answered Dec 26 '22 02:12

BoltClock