+ 7
What is framework in programming?
3 Respuestas
+ 9
The framework is a set of definitions of what a code does, for example the .net framework (used in languages such as C # and F #) has all the definitions of functions, classes, objects, etc. .. Thanks to it framework we can make machine readable codes
+ 1
Assume you want to make web site. You have probably ideas how it should look and what it should do. But there are things you have to do regardless, like routing, authentication and technical things like that.
A web framework does these basic technical things for you. You just add the content and logic specific to your website.
That's why it's called framework. The structure is already there. You just make it pretty.