Posts

Showing posts from September, 2018

UI/UX Beyond Design and Animations

Image
From last few i was reading a lot of blogs and articles on User Experience Design so i thought of writing a article on UX for Software Products. When we design any App/Software our main agenda is to fulfil the goals of that product, but we don't think too much about the end user experience. Few Days back i Visited a agency of "Hero MotoCorp", and the person siting on sales counter was facing some difficulty with the accounting software so he asked me for help, i went their and seen the software he is using  and for a moment i started thinking this is the condition of software development companies in india, The things i noticed are mentioned below: 1. The UI is super messy. 2. Nothing Self-explanatory in the UX. 3. Taking Much numbers of clicks for single tasks. 4. Improper use of UI Components. 5. No User Manual integrated in the Software for quick assistant. Although this software is fulfilling all the needs,  but it is also generating a chance of error

Handling GET and POST HTTP Request in NodeJS and Express Application

Image
From Last few months i worked a lot on Full Stack JavaScript Development, and from my experience i found some best and simple ways to handle different HTTP Request in Node & Express API, In this article we are going to make a simple CRUD(Create Read Update and Delete ) API. If you are not aware of setting up a Node and Express Application Kindly refer my previous article here. So Lets get Started: Like a normal Express Application in line number 1 & 2 we are importing express and initialising it in "app" constant, now "app" is referencing our whole applications. 1 2 const express = require( 'express' ); //importing Express const app = express(); //initialising Express app To Keep this Example simple we are going to use an array to save our data instead of a Database. While Developing an API, Validation is an important part that needs to be considered. for validation we are going to use "joi" a node module from