Isoftke Software Solutions

  • by
  • November 15, 2022
  • 4mins read

How to use controllers in node and express

How to use controllers in node and express Hey guys what’s up hoping that all is well. Today we are going to use controllers in building our REST API in node and express. We are going to build a server-less api and so there is no need of using a database controllers A controller contains […]

programming
  • by
  • November 15, 2022
  • 7mins read

How to use express ejs layouts

How to use express ejs layouts Hi hoping that you are well today, our main focus is on how to use express ejs layouts in building a default nodejs website template. We are going to build a website with three pages with ejs as our default templating language In this article here we built a […]

programming
  • by
  • November 15, 2022
  • 3mins read

What is a mern stack application – part b

What is a mern stack application – part b Welcome back on this guide on what is a mern stack application? In our first part we created our api now in this part we are going to make our front-end interface to consume our api Now lets start by creating our react app in our […]

programming
  • by
  • November 15, 2022
  • 6mins read

What is a mern stack application

what is a mern stack application? Hey there today we are featuring the mern stack application Probably you might have come across the word but you have no idea of what it means Don’t worry today you’ll eventually get to know its meaning and use Lets start MERN MERN stack is a JavaScript stack that […]

programming
  • by
  • November 14, 2022
  • 1min read

Loops in JavaScript

Loops in JavaScript JavaScript loops Loops are used to repetitively run a piece of code over and over again without necessarily writing it repeatedly Loops can execute a certain block of code a number of times. In programming loops are used to repeat a block of code. Loops are useful in programming for example when […]

programming
  • by
  • November 14, 2022
  • 6mins read

A must learn JavaScript array methods

A must learn JavaScript array methods introduction to arrays The proper organisation and storing of data is called a data structure. The use of data structure is very common in the field of software engineering. The use of data structures is applicable in almost all the programs and soft wares from eCommerce applications to puzzle […]

programming
  • by
  • November 14, 2022
  • 4mins read

Building a simple REST API in node and express

Building a simple REST API in node and express Hello in this tutorial today we are going to build a simple server-less REST API using nodeJS and Express A server-less app means we are not going to store our data on a database REST defines a set of conventions for creating HTTP services: HTTP(Hyper Text […]

programming
  • by
  • November 14, 2022
  • 3mins read

Getting Started with git hub and git commands

Getting Started with git hub and git commands In this article am going to take you through some basic git commands,you can use to produce different versions of your project Before we begin go through my git hub lesson here to set up your account well this is just but a simplified version of the basic […]

programming
  • by
  • November 14, 2022
  • 8mins read

Node,Express and MongoDB REST API

Node,Express and MongoDB REST API Hi All, In this article today we are going to build a REST API using node, express and MongoDB. API An API (Application Program Interface) is a connection between computer programs. APIs create a communication protocol between the back end and the front end of a program. In other words […]

programming