More Articles

Simplify Debugging in Eleventy and Nunjucks with an Easy Console.log Function

Debug values more easily from within your Nunjucks templates.

Written on May 5, 2024 | About 1 min reading time

New tools in your inbox every Monday!

Table of Contents

Easily Log to the Console in Eleventy with Nunjucks

If you're working with Eleventy and Nunjucks, you may sometimes need to log values to the console for debugging purposes. There's a neat trick that allows you to log values more easily from within your Nunjucks templates.

Here's how you can do it:

  1. Open your Eleventy configuration file.
  2. Add the following code to the file:
    eleventyConfig.addFilter('log', value => {
      console.log(value)
    });
    This code adds a new filter called 'log' to Nunjucks. Filters in Nunjucks allow you to modify or transform values in your templates.
  3. Now, in any of your Nunjucks templates, you can use this filter like this:
    {{ someVariable | log }}
    This will log the value of `someVariable` to the console.

For example, if you have a variable called `person` with an object containing name and age properties, you can log it like this:

{{ person | log }}

And you'll see the entire `person` object printed in the console. Just pipe the value you want to log through the 'log' filter, and it'll be displayed on the page automatically.

This can be especially handy when you're working with complex data structures or debugging tricky template logic.

So, give it a try and make your debugging experience a little smoother with this simple console.log trick for Eleventy and Nunjucks!

July Featured Tools

Deep Space Digital Marketing Group

Custom small to medium sized business website design, development, and digital management with an emphasis on lead generation. Starting at $199 per month with $0 down.

Explore

Page UI

Page UI is a set of landing page components & templates that you can copy & paste into you codebase. Made for React & built on top of TailwindCSS.

Explore

We Recommend...

Top products featured for the article.

Deep Space Digital Marketing Group

Custom small to medium sized business website design, development, and digital management with an emphasis on lead generation. Starting at $199 per month with $0 down.

Explore

Luge

Front-end animation plugin for uncreative developers.

Explore

Ubersuggest Traffic Analyzer

Enter in a domain to get a list of websites that are competing for the same keywords.

Explore

Lenis JS

A new smooth scroll library fresh out of the Studio Freight Darkroom.

Explore

Sponsored

See all Tools

A Little Extra Reading

Feel like reading more? Here are some extra articles to check out!

See all Articles