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
Month: December 2018
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
What is cURL: cURL is a PHP library and a command line tool (like wget) that helps you send files and also download data over HTTP and FTP. It supports proxies, you can transfer data over SSL connections, you can set cookies and even get files that are behind a login. cURL allows transfer of … Continue reading PHP cURL
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