Posts

Showing posts from September, 2023

Best Folder Structure For Web and Mobile Applications

Image
  By Prem kumar Everyone is developing applications many times but have you followed best practices in your application? Following best practices will give trust to the Person and application quality. I’m Each application maintaining the folder structure is very important because this folder structure should give a critical and clear understanding. I have created a folder structure with a better understanding. asserts / We can store the images . If you started folder name with a small letter then it should be the same for all the folder names. Common/ Inside common, we can go with API,Axios,Constants,i18n,string,theme,utils. API : We can go with all the API’s Axios : Try to go with common Axios functions like interceptors, base URL etc constant : Object values like country code etc I18n : Language translator String : Go with common string or names theme : Application color code and css functions Utils : Application Commonly used functions Component/ It is the one we need to write a...

Things that add value to the Application

Image
  While developing any kind of application we need to look in to certain kind of things like application speed, code quality, easy to access, User-friendly, and cost efficiency. Today I’m sharing my insights to improve the Application, It can be applicable for both mobile and web applications. Point 1: Try to follow Atoms, Molecule and organizam folder structure. If you are not aware of this, please read the below. https://medium.com/@prem__kumar/best-folder-structure-for-web-and-mobile-applications-cc55f9531b14 Once your application is stable try to make atoms as uneditable one . Host this atom folder in to NPM Package.  Use the folder through the npm install, It will reduce code dump and make the application faster. npm | Home We're GitHub, the company behind the npm Registry and npm CLI. We offer those to the community for free, but our day… www.npmjs.com Point 2: ESLint:  Try to use EsLint for Error rectifying Point 3: Pretifyer:  Use Pretifyer for code alignment...