# used

Published articles for used.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## Using Make & Makefiles to Automate your Frontend Workflow

DevFeed: [Using Make & Makefiles to Automate your Frontend Workflow](<https://devfeed.tech/articles/using-make-makefiles-to-automate-your-frontend-workflow-31313.md>)

Original publisher: [Read original article](<https://nystudio107.com/blog/using-make-makefiles-to-automate-your-frontend-workflow>)

Author: andrew@nystudio107.com (Andrew Welch)

Published: 2021-04-11T20:13:00Z

Content type: tutorial

Language: en

Sources: [nystudio107 | Articles on modern web development.](<https://devfeed.tech/sources/nystudio107-articles-on-modern-web-development.md>)

Topics: [make](<https://devfeed.tech/topics/make.md>), [Front end](<https://devfeed.tech/topics/frontend.md>), [Automation](<https://devfeed.tech/topics/automation.md>), [Web Development](<https://devfeed.tech/topics/web-development.md>), [Command-line interface](<https://devfeed.tech/topics/cli.md>)

Tags: [automate](<https://devfeed.tech/tags/automate.md>), [automation](<https://devfeed.tech/tags/automation.md>), [build](<https://devfeed.tech/tags/build.md>), [cli](<https://devfeed.tech/tags/cli.md>), [decades](<https://devfeed.tech/tags/decades.md>), [development](<https://devfeed.tech/tags/development.md>), [frontend](<https://devfeed.tech/tags/frontend.md>), [insights](<https://devfeed.tech/tags/insights.md>), [learn](<https://devfeed.tech/tags/learn.md>), [leverage](<https://devfeed.tech/tags/leverage.md>), [make](<https://devfeed.tech/tags/make.md>), [software](<https://devfeed.tech/tags/software.md>), [that-s](<https://devfeed.tech/tags/that-s.md>), [tool](<https://devfeed.tech/tags/tool.md>), [used](<https://devfeed.tech/tags/used.md>), [workflow](<https://devfeed.tech/tags/workflow.md>)

### AI overview

A tutorial on using GNU Make and Makefiles to automate frontend web development. It explains how Make can provide a consistent project-specific CLI, hide underlying tooling, and simplify commands for development, builds, cleanup, and documentation.

### Source excerpt

Make is a build automation tool that's been used for decades to build software. Learn how you can leverage make to automate frontend web development

## The Craft cache Tag In-Depth

DevFeed: [The Craft cache Tag In-Depth](<https://devfeed.tech/articles/the-craft-cache-tag-in-depth-31307.md>)

Original publisher: [Read original article](<https://nystudio107.com/blog/the-craft-cache-tag-in-depth>)

Author: andrew@nystudio107.com (Andrew Welch)

Published: 2016-11-30T09:47:00Z

Content type: tutorial

Language: en

Sources: [nystudio107 | Articles on modern web development.](<https://devfeed.tech/sources/nystudio107-articles-on-modern-web-development.md>)

Topics: [Caching](<https://devfeed.tech/topics/caching.md>), [Content Management System](<https://devfeed.tech/topics/cms.md>), [Code](<https://devfeed.tech/topics/code.md>)

Tags: [cache](<https://devfeed.tech/tags/cache.md>), [caching](<https://devfeed.tech/tags/caching.md>), [cms](<https://devfeed.tech/tags/cms.md>), [code](<https://devfeed.tech/tags/code.md>), [craft](<https://devfeed.tech/tags/craft.md>), [effectively](<https://devfeed.tech/tags/effectively.md>), [help](<https://devfeed.tech/tags/help.md>), [here-s](<https://devfeed.tech/tags/here-s.md>), [insights](<https://devfeed.tech/tags/insights.md>), [performance](<https://devfeed.tech/tags/performance.md>), [used](<https://devfeed.tech/tags/used.md>), [works](<https://devfeed.tech/tags/works.md>)

### AI overview

This article explains how Craft CMS's {% cache %} tag works and how caching can improve performance when used correctly. It cautions that caching should not conceal inefficient templates, excessive database queries, or hosting and server problems, and notes possible stale-content and background-task effects.

### Source excerpt

Craft CMS has a {% cache %} tag that can help with performance, if used effectively. Here's how it works.