Posts

Progress of Application Frameworks Group project 12th week In this week I started to create the email part of my frontend. First, I installed  node mailer  for send the email to store manager's gmail after admin create their accounts. Next I completed frontend pages in my part. Next I completed frontend part in my project. Finally I pushed my project in to the GitHub repository. 
Progress of Application Frameworks Group project 11th week In this week I started to create the frontend of my part. First, I installed bootstrap and sweetalerts to develop frontend of my part and to display alerts. Next I installed axios to connect backend endpoints in my frontend. Finally I started to create email in my part. 
Progress of Application Frameworks Group project 10th week In this week I started to create the backend of store manager sign in part and admin sign in  part. First, I implemented sign in function to the store manager and the admin. I used store manager's email and user password to verifying the sign in. And I used admin name and his password to verifying his login. Next I started to implement the create categories part. Finally I completed the my backend part and completed all validations of backend.
Progress of Application Frameworks Group project 9th week In this week I started to create the backend of my part. In my part First, I implemented Add, Update, Delete operations of the store manager details. I'm install express , cors and Mongoose libraries to develop the backend of my part. Finally I completed all validation in these parts.
Progress of Application Frameworks Group project 8th week We divided the scope of the group project in Application Frameworks and distributed it among the group members. I'm implementing all the operations which are done by admin. In this week I started to create the login for the store manager. I'm using MERN stack to develop the project.
Image
What is Express JS? The original author, TJ Holowaychuk, described it as a Sinatra-inspired server. Web Applications Express JS is a minimal and flexible Node.js web application framework that provides a robust set of features for web and mobile applications. APIs With a myriad of HTTP utility methods and middleware at your disposal, creating a robust API is quick and easy. Performance Express JS provides a thin layer of fundamental web application features, without obscuring Node.js features that you know and need. Minimal features but many features available via plugins. Express JS most important feature is routing. Express JS is high performance, extensible framework and can reusable. Frameworks Many popular frameworks are based on Express JS. Designed for developing web applications and RESTful APIs. Ex: several popular Node.js frameworks are built on Express JS. Feathers : Build prototypes in minutes and production ready real-time app...
Image
REST Services & REST Architectural  Constraints What is REST Service? REST was first defined b Roy Fielding in 2000. It stands for Representational State Transfer(REST). Actually, REST is an architectural model and design for server network applications . REST is used to build Web services that are lightweight, maintainable, and scalable in nature. A service which is built on the REST architecture is called a RESTful service. The underlying protocol for REST is HTTP, which is the the basic web protocol. REST stands for REpresentational State Transfer. Resources are identified by an URI and URIs may refer the same resource. It is use for client and server communication. REST does not enforce any rule regarding how it should be implemented at lower level, it just put high level design guidelines and leave you to think of your own implementation. REST Architectural Constraints 01.Uniform interface As the constraint name itself applies, you MUST deci...