MERN Marketplace
The MERN Marketplace application will allow users to become sellers, who can manage multiple shops, and add the products they want to sell in each shop. Users who visit MERN Marketplace will be able to search for and browse products they want to buy, and add products to their shopping cart to place an order:
Note
The code for the complete MERN Marketplace application is available on GitHub: github.com/shamahoque/mern-marketplace. The implementations discussed in this chapter can be accessed in the seller-shops-products branch of the repository. You can clone this code and run the application as you go through the code explanations in the rest of this chapter.Â
The views needed for the features related to seller accounts, shops, and products will be developed by extending and modifying the existing React components in the MERN skeleton application. The component tree pictured next shows all the custom React components that make up the MERN Marketplace frontend developed in this...