How to install gulp less

3 |

Before starting the exact installation process, let us first understand what are preprocessors and how ‘less’ is useful in development. With this hope that we all know CSS, let us try to understand what do PreProcessor mean? In computers, we can say pre-processor means a program that takes an input and produces an output that in return can be used […]

gulp sass -npm

0 |

Before diving into the procedure, how to install the gulp-sass, we have to make sure that we have installed gulp in our system. Let’s brush the gulp installation process. If you have not installed before,gulp have to make sure you install it globally first. Start by running,npm install -g gulp once that has completed we need to add […]

SASS installation in detail

2 |

SASS stands for Syntactically Awesome Style Sheet. It is a CSS preprocessor language. SASS provides many features like variable, operator, mixin etc just like other programming language does. It reduces the CSS development time. Install The following are steps for the SASS set up in Linux Step 1: Install Ruby using apt package manager, rbenv, […]

WordPress web.config file

5 |

Redirection is one of the important thing in WordPress. WordPress uses .htaccess file to do the redirection process. Windows server not consider .htaccess file. so redirection won’t happen and the site will show 404 page. But windows server considers web.config file for the redirection process. so we have to create and write our redirection rules […]

Laravel Directory setup in Azure

0 |

Directory setup is an important process in Laravel projects. Laravel lifecycle always starts from the file `public/index.php`. Azure deploys everything you push to it into the `wwwroot` directory. To change the project startup point in Azure, Follow the below steps Click your web service link. It will list all settings under your web service Go […]

How to install composer in Azure

0 |

The composer is an important package manager in PHP. It is mainly used with Laravel for package management. The composer can be easily installed on Azure via Its extension manager. Follow the below steps Click your web service link. It will list all settings under your web service. Go to `DEVELOPMENT TOOLS` and click `Extensions` […]

How to change PHP version in Azure

0 |

Azure provides an option to install the needed PHP version according to our project. To change PHP version in Azure, Follow the below steps Log in to Azure, and click your web service link. It will list all settings under your web service Go to `SETTINGS` and click `Application Settings` Link. It will list all […]

What is Less and how to install less with NPM

2 |

Before explaining what is LESS and how to install less, please make sure we know the HTML and CSS. Then only it will be useful and meaningful for you to know how using less makes our job easy. LESS is a CSS pre-processor that gives us the flexibility to write a customizable, manageable and reusable […]

What is SCSS and how to install it with NPM (Node Package Manager)

1 |

What is SCSS SCSS is an advanced version of SASS, which stands for Syntactically Awesome Style Sheet. It is a CSS preprocessor language. SCSS provides many features like variable, operator, mixin etc just like other programming language does. It reduces the CSS development time to a large degree. How to install it with NPM (Node Package Manager) The […]

.md file

2 |

What is md file? md stands for Markdown. The .md and .markdown files are just text files written in Markdown syntax. To create a md file just save the text file with .md extension. we can use all the text editors to edit the md file. Markdown file is mainly used in GitHub. If you […]

1 2 3