Limited Period Offer : 20% Discount on online/offline courses, for more details call/whatsapp

Things you should learn to become good web developer for any tech stack

1 min read
1 year ago By Santosh Kshirsagar

To become a good web developer following are the concepts you must know to how to work with

  1. Installation and Setup - Setting up framework or finalize directory structure and then setting up database
  2. Authentication - Adding user table giving user option to register and login
  3. Variables, Data types
  4. Functions and loops
  5. Date Time Manipulation
  6. Crud Operations - Create, Read, Update and Delete are very basic to know for any development project
  7. Authorization - Giving your web portal option to create roles and permission so accordingly they can access to only permitted modules/section/elements
  8. Data Table - Showing data in table with feature like pagination, sort and filters
  9. Notifications - Whenever you want to show notification to user like in webpage also sending notification via email/sms
  10. API Integration - Some time you will need to consume data in your application
  11. Email/SMS Integration - once you know api integration you should integrate this things
  12. Payment Gateway Integration - You should get hands on to integrate different payment gateways.
  13. Events - You must know how to create event and listen to event so you can process things in background and this will be very helpful in microservices
  14. Reports/Chart- You must know how to create reports using tables also you should get experience in creating pie/bar/line etc charts. Using this you can create good dashboards.
  15. Forms - while learning crud you will get this, but you should get hands on all types of inputs.
  16. Validations - Server side validation are must client side validations can be manipulated but you should do that too to give good experience to user
  17. Import/Export - You should know how to import csv/excel data to database and how to export from database to excel/csv
  18. Deployment - Deploying the website to server on cloud or hosting provider. So website can be accessed trough actual domain name.
Oct 15, 2023 14:37 Back to Articles

Other Articles

Searching Algorithm.

Linear Search Algorithm in the Array traverse through each element in the give array and search the elements.

1 year ago By Aniket Prajapati
Real DOM VS Virtual DOM

In this article, we will discuss the differences between the real DOM and the virtual DOM in the context of web development. We'll explore how these concepts impact the performance and efficiency of web applications, and how they contribute to the overall user experience. By the end of this article, you'll have a clear understanding of the distinctions between these two approaches to managing and updating user interfaces on the web.

1 year ago By Mitali Gupta
How to use and upload profile photos to AWS s3 using laravel jetstream

Using jetsream to upload photos to s3 configuration and details

1 year ago By Santosh Kshirsagar
Merge Two Sorted Linked List

Merge Two Sorted Linked List is a Standard Linked list Problem which is Frequently asked in Many Coding interviews. The basic idea is you have given Two Sorted Linked list which are sorted in its own and you have to return return a pointer node which has a merge single list of both the sorted list .

1 year ago By Aniket Prajapati