0
What is the easiest design methodology for full stack development
I want to design systems using HTML as run time and I want find the simplest one.
6 ответов
+ 2
Sorry if I misunderstood your question, but in fact it is still not quite clear to me what you want.
If it's a development environment that runs in the web browser, there are such things too Visual Studio Code (via GitHub) and also JetBrains Fleet can do that.
If you look for ways to organize your code, then every web framework has their own preferred directory structure and set of build tools. Pick a framework, and the methodology so-to-speak comes with the package. Starting with React + Redux can be a good idea because it is probably the most widely used.
Apart from that, we could also lament on what 'simple' really means for you. Simple to develop? Simple to deploy? Simple to maintain? Simple as for the source code behind it? To think about this, I can recommend this talk "Simple made Easy", by Rich Hickey, creator of the Clojure language (even if you are not interested in learning the language, he talks a lot of design principles).
https://www.infoq.com/presentations/Simple-Made-Easy/
+ 2
About connecting backend and frontend:
https://stackoverflow.com/questions/68164444/how-to-connect-backend-and-frontend
+ 2
In that level I think what you're looking for, is architectural patterns such as
Model-view-controller
https://en.m.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller
Model-view-presenter
https://en.m.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93presenter
Model-view-viewmodel
https://en.m.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93viewmodel
I think there is no consensus on what is the best or simplest approach, there are pros and cons with each...
+ 1
https://wordpress.com/
HTML is not a programming language. :) Full stack development involves much more than that.
But you can use low-code frameworks or CMS (content management systems) such as Wordpress to publish web pages with ease.
+ 1
I am wanting something abstract that can be used to DESIGN independent of framework and the suchlike. In mainframe development many years ago there was the Jackson structure program methodology so something could be designed independent of language that is what I am looking for.
0
That is not what I meant those are tools.
Mentioned HTML as run-time I really meant using web browser as this for the user front end as it is to all intents and purposes universal.
With that been stated I want an easy to design methodology similar to structured programming techniques