Most Helpful Tools For WordPress Developers

WordPress is full-fledged CMS and a strong platform for developers. here are some of helpful free tools that every WordPress developer should know about: 1.Roots.io Roots.io is a multi-tool package for serious developers. Its aim is to provide tools for designing robust WordPress projects, from server setup to theme development. Here are the three tools: … Continue reading Most Helpful Tools For WordPress Developers

How to install laravel project cloned from github

If you found laravel project from github.com and you want to setup and use it locally, following are some helpful steps: Clone your projectGo to the folder application using cd command on your cmd or terminalRun composer install on your cmd or terminalCopy .env.example file to .env on the root folder. You can type copy … Continue reading How to install laravel project cloned from github

Gulp Introduction

What is Gulp Gulp is a “JavaScript task runner” — like its main competitor Grunt, it’s a development tool that can be used to automate things like minification, concatenation, unit testing, linting (i.e. identifying code errors — see https://en.wikipedia.org/wiki/Lint_%28software%29 for more information) and template pre-rendering. Gulp is code-based, and tasks are written using normal JavaScript code. Gulp requires Node, … Continue reading Gulp Introduction