Posts

Showing posts from May, 2022

Experience During The Application Framework Group Project

Image
 Experience During The Application Framework Group Project I am a 3rd year second semester undergraduate at the Sri Lanka Institute of Information Technology (SLIIT). In this semester we should have do a project related to Application Framework (AF) module. There for we created a group. There are four members in that group. Finding members for this group was a difficult task. At first there were only three of us, so it took a while to find one more. We barely knew the new member. Because of that it was a bit awkward to work with her in the beginning. But after some days we were able to build up our friendship. we have to build a system for research project management in this module. Fist of all we figure out what kind of technology we should use to do this project. So, we discussed about what is the most suitable technology for this project. After that we selected functions and we started to do the given tasks.  Working on a project with others can be difficult at times...

Introduction Of React Js

Image
 Introduction Of React Js What is React Js ? React is a front-end JavaScript library for creating user interfaces based on UI components that is free and open-source. Facebook is the company that created and published React. React can be used as a base in the development of single-page, mobile, or server-rendered applications with frameworks like Next.js. Also it handles the view layer in web and mobile apps. We can also make reusable user interface components with React. The MVC (model view controller) design is now used by the majority of websites. React is the 'V' in MVC architecture, which stands for view, whereas Redux or Flux provides the architecture. Why are we learn React Js? Although there are numerous JavaScript frameworks available today (such as Angular and Node), React was the first to enter the market and quickly garnered popularity. The earlier frameworks used the DOM to follow the usual data flow structure (Document Object Model). When a web page is loade...

Koa.js

Image
  Koa.js What is Koa.js? Koa.js is a Node.js web application framework that offers a comprehensive range of functionality for both web and mobile applications. It's an open source framework created by the same people who made Express.js, the most popular node web framework. Their key goals are to create a basis for online applications and APIs that is smaller, more expressive, and more robust. Koa is a node.js HTTP middleware framework with a lot of flexibility. Lets see what are the features of Koa.js Koa.js offers its own set of capabilities that make it a more expressive, developer-friendly, and robust framework. Some of them are, Modern and future proof - ES6 is used to build Koa.js. it simplifies complex programs by introducing new classes and modules. As a result, it assists developers in creating maintainable apps that hold up over time.   It uses a context object - Koa.js also assists developers in encapsulating the vanilla response and request objects into a single ...