Skip to main content

Introduction for Application Frameworks.

This blog includes the principles that must be followed when designing a software and the way of
approaching and implementing the solution,before going in-depth of the designing languages.

"An application is a software library that provides a fundamental structure to
support the development of applications for a specific environment not only for
graphical user interface development but also for areas like web based applications."
S.O.L.I.D



There are 5 object oriented Principles that should be followed when designing a software.
This is know as S.O.L.I.D

I - Single responsibilities.

  • Designing a class that has only one responsibility

O - Open-Close.

  • The application must be closed for modification and open for extension.

L - Liskov Substitution.

  • Sub-classes derived from the parent class must be able to substitute the parent class.

I - Interface segregation.

  • Clients should not be forced to implement methods they do not use.These unknown methods are known as fat interfaces.

D - Dependency inversion.

  • high level modules should not depend on low level modules but abstraction.


Approaching the Solution.






  • Think throughout the problem - Make sure to understand the problem and clear the uncleared doubts by questioning before approaching the solution.
  • Divide and Conquer - divide the problem into sub parts and make it manageable and understandable and try to approach the solution through the sub solutions.
  • KISS - Keep it simple.
  • Learn from mistakes - Embrace the changes and learn specially from the mistakes.
  • Always remember the reason behind the software existence and that you are not gonna use the software.


Implementing the Solutions.





  • YAGNI -You Ain't  Gonna Need It.Do not implement methods that you do not need.If you do not need it now it wont be used in future as well.
  • DRY - Do Not Repeat Yourself. Keep the code generalized and reusable.
  • Embrace abstraction -
  • DRITW - Do not Reinvent The Wheel.If someone has resolved the problem make use of it do not waste time.
  • Write code that does one thing - do not try to overload the code,Try to implement code that do one thing correctly at one time.
  • Debugging is harder than writing - Make the code readable so it can be easily debugged by the testers. 
  • Kaizen Fix not only the bug but also the code around,hence real problem must be hidden in the designing not in the bug.


Comments

Popular posts from this blog

Basic concepts on ReactJS

Props and State. Props and state are the two basic ways to handle data in ReactJS.  Props are used to pass data and behaviors from container components to child components. Props are read only. State is used to keep data which can be updated. State is read write enabled. State. State is basically available through  'this.state', which is by default is null. Whenever the state changes on a component the component will  automatically re-render and update DOM (Document Object Model) if there are any changes else the DOM will not get touched at all. Using state. To change the state setState() method can be used. Since setTimeOut() method is used in the bellow example after a second (1000ms)  'Will'   will be changed to  'Bob'.   Changing the state using  'setState()' If the component has an internal value that does not effect the application state is appropriate. A side from that props can be used. Props. Pro...

What is ExpressJS

Express is a very popular framework that is used in NodeJs. Express is build upon NodeJs and also it provides a lot of tools that makes node more easy to use by adding more functionalities. Most of the needed functionalities are handled by express which helps the users to only focus on the business logic and to easily setup routes and to render the things on screen in a fast, optimized and a secured manner. How to install ExpressJS? Express can be easily installed by the command  " npm i express"  . Installation of ExpressJs package.json file will be updated once the installation is successful. How to import ExpressJS? To import the installed express module we can use the command  " require("express") " . Accessing the imported express module. express can be accessed as given below using the given commands. Firstly a constant called app is created. And then using this give constant app ...

Introduction to ReactJS

React is an open source front-end (JavaScript) library developed  and maintained by Facebook and Instagram for building fast and interactive user interfaces. Why ReactJS? In 2009 Facebook was using traditional data flow as the back-end. Therefore to get new updates the entire page had to be reloaded. In terms of initial data, real-time data and user data was flowing from different sources. Then the data was accordingly passed to the dispatcher, store and ultimately view. If there was any changes in the back-end in order  to reflect the changes on the view the entire  page had to be refreshed. This was not user-friendly. Drawbacks of traditional data flow. Uses DOM (Document Object Model). More memory consumption. Slow performance. With use of React the entire application is divided in to various components. When new data is added it will automatically update that component whose state has actually changed without reloading the entire pa...