Answer the question
In order to leave comments, you need to log in
What are the current trends in web programming?
Hello dear community.
I am a web development dinosaur, started in 2005. I write in pure PHP (and in a procedural style, sorry) and native JavaScript (with the addition of jQuery). It so happened that wherever I worked, I was the only specialist and stewed in my own juice. Accordingly, he performed the role of a full-stack programmer. I don’t justify my possible laziness, but the load everywhere was large and there was not enough time for self-education.
Correctly, I understand that the world has changed a lot, now the server and client parts have diverged a lot. The server no longer dynamically generates pages, it serves only as a source and data processor (analogous to API services). The client part is developed on JS-frameworks and the whole process of interface generation takes place in the client's browser?
As a result, what my sites or web applications looked like: in php, I generated dynamic html pages with JS code. If it was necessary to change the data locally in the client's browser, an ajax request was sent to the server, which generated a ready-made html block, which was then inserted in the right place.
What I got confused about, on the one hand, everyone switched to JS frameworks and now rendering takes place on the client side, which puts forward certain requirements for the client’s hardware (otherwise brakes).
At the same time, Google, with its Lighthouse and site ranking method, says that sites should load quickly and display quickly, and this they now first of all check on older smartphones.
I read a lot before asking a question here (cry of helplessness). It’s clear about OOP, everyone switched to it and there is no alternative. About PHP I chose to study Laravel , about JS, CSS, HTML - I realized that I need to learn Bootstrap for adaptive layout, VueJS - as a JS framework.
I apologize for the long introduction, now the actual questions :
Tell me what to do if there are such requirements for the site / web application:
- so that it is universal, that is, correctly displayed on smartphones, tablets, desktops
- so that it works correctly on old / cheap smartphones
Separate the client part and the server part: send / process data in pure PHP, create an interface in VueJS and Bootstrap.
Or Is
it still in PHP already with Laravel to generate pages for the user with Bootstrap and jQuery?
I would really appreciate your advice, thanks.
Answer the question
In order to leave comments, you need to log in
I'll put in my five cents. IMHO, by and large what you write on matters only in very large projects with a large team and constant updates. There, the choice of the stack at the start will leave an imprint on everything else. In 99% of other cases, the technology stack is completely unimportant if the TASK IS PERFORMED.
I am the same dinosaur, only even more ancient, I have been writing websites since the 2000s. I keep an eye on all new trends, languages, frameworks, IDEs. But I see absolutely no reason to switch to them for myself. 99% of all orders for the web can be implemented on the same WordPress or some other engine, self-written, etc. And only one percent of customers really know what they need, for example, a SPA based on a non-relational database, and so on. The same SASS or loess, which at one time blew up the frontend, also did not convince me of its usefulness. Although I honestly watched vidos with explanations and comparisons, I wrote on them myself, and so on. If you write basic css styles neatly and thoughtfully, break them into pieces if necessary, and so on, you will never have problems anyway.
In fact, all that has changed in my personal world over the past ten years is the addition of a little OOP in my own code and the environment where I wrote from dreamweaver to atom has changed. ALL. The rest, as it was php/mysql/html/css/js-jquery, remains the same. And you know what? This is enough to solve all the problems that are in front of me. And I don't feel at all hurt or outdated.
It seems to me that when something really breakthrough, super convenient, worthwhile, etc. appears, you will not have the question "why do I need this, but is it worth it to go over." You will definitely understand that yes, it’s worth it, it’s cool and will speed up / improve the process and the result of your work.
I have been working as a full-stack developer for a long time and I use just such a stack almost everywhere, I will share my opinion.
The Bootstrap + Laravel + VueJS stack you chose is great, suitable for any application layer. We do highload admin panel management on Laravel + VueJS, and highload api on symphony and node.
Answering your questions:
Bootstrap is just for this, learn all the details of layout for different devices.
Forget about jQuery, write in vuejs (>es6) + vanilla js, use webpack + polyfills if old devices are needed.
To sum up: learn bash + git + composer + laravel + vuejs + bootstrap + sass + js (es6) + docker. (bootstrap is optional, if the volume of styles is not large, write in pure css)
If the site is tuned for traffic from search engines, then all the new-fangled "laravel + vuejs + bootstrap + sass + js (es6) + docker" go hard in the forest
- so that it is universal, that is, it is displayed correctly on smartphones, tablets, desktops
- so that it works correctly on old / cheap smartphones
so that it is universal, that is, it is correctly displayed on smartphones, tablets, desktops
Hello fellow dinosaur. Personally, I now write simple back-end APIs with minimal ties to frameworks.
Maximum - I almost never touch third-party libraries and components of the symphony from the Front composer. If a front is required, I saw the skeleton on the bootstrap and enliven it with ECMAScript6 scripts. Those. I describe the object model of entities on the page and the interactions between them.
More often I just provide documentation on the api frontender.
The main thing - do not overload your site with unnecessary and cumbersome scripts. Without fanaticism. Now the entire "civilized" web is very littered with tons of JS frameworks and various libraries, they are now shoved with or without reason. Still, sometimes it's better to do it "the old fashioned way" and it will work better than on Vue.js/Angular/your favorite framework.js, especially if you have a productive server. Don't forget about Windows users, as some hipstors like to optimize their sites for Pink Safari on Aimac, as a result, the site can change completely, usually not for the better. And that's not to mention the old hardware that runs Windows XP. Of course, you should not slow down progress, but you should not follow its lead either.
The best site is the one that benefits its visitor, in 99% of cases he does not care what the site is written on, the final result is important to him. But if it slows down, devours traffic or crashes, it is unlikely that a person will return to you, and even tell others.
I used to be a full stack, I also coded back in a puff in a procedural-functional style, OOP was in the form of connecting all sorts of libraries like Smarty, DBSimple. At the age of 10, I got tired of producing a boilerplate, freaked out and drank a small framework, realizing that the main logic had gone to the front, so the movement focused on giving the primary layout and supporting a bunch of AJAX requests conveniently. The front was made on jQuery with plugins.
For some time, this worked fine, until, one day, I had to cut a 60-field form with a bunch of logic to integrate the customer's internal CRM with Cyan. Especially when after a few months I had to change the logic, because. life doesn't stand still...
I was finally finished off by a form for applying for a mortgage on 8 pages and 300 fields with a configurator and the ability to turn off any fields, blocks, and even pages. The customer demanded an implementation in jQuery, although I was already keen on React at that time.
In general, that the train of the past has left and I need to retrain, I finally realized in 2014-2015, which I immediately did.
At first I jumped into Node.JS, but I found everything boring there, so I switched to the front, mainly React + Vanilla. It turned out that I really did not know JS, so I began to methodically close all my blind spots. One of the best ways to learn something is to start teaching it to others, so I went as a JS mentor wherever they took, which helped me master the basics in a short time, because. you can cheat for yourself, and when other people are waiting for answers, it is very disciplined. :)
In the future, I plan to return to full-stack development, but already based on Node.JS + React, because. For me personally, this stack is the most comfortable.
Here the main question is what we write.
If document-oriented systems (like Internet shops, blogs, news).
That actually Laravel, Symphony well, etc. JS with its frameworks didn’t give up here.
For simple SPA applications, you can of course React, Vue. But this is only for simple, complex business applications, they are not very suitable (because they are not stable and long). In general, there are no complex projects on them, and no matter what anyone says.
For business applications (a bunch of tables, reports, non-trivial business logics).
I would recommend Vaadin - it's a java web framework.
In general, everything that turns on Java or C #.
Also, for large corporate clients, Desktop has not disappeared anywhere.
Regarding phones, no one bothers to adapt the site to the screen. Since the resolution of modern phones is large, all who could have written mobile clients for a long time.
well, write api on laravel (lumen) and spa on vue.js, routing through the client, if you need ssr, then there is a module
in php.
It will also be interesting to pay attention to typescript, graphQL (rest alternative)
There is also such a list with stacks, more one useful link
Hey!
If you're a dinosaur, then I'm the petrified shit of that dinosaur. Experience since 1990 :)
Use a framework, of which there are many (jQuery Mobile, Bootstrap, Framework7, Onsen UI, etc.)
To prevent old smarts from hanging, generate content on the server (a powerful server is required), giving the finished code. Or combine generation on the server and on the client. It all depends on the specific task.
I note that I use a jQuery-like library for PHP to generate code. The same selectors, the same methods - very convenient!
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question