Socket
Socket
Sign inDemoInstall

@11ty/eleventy

Package Overview
Dependencies
Maintainers
1
Versions
187
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@11ty/eleventy

Transform a directory of templates into HTML.


Version published
Weekly downloads
66K
increased by6.33%
Maintainers
1
Weekly downloads
 
Created
Source

eleventy 🕚

A simpler static site generator. An alternative to Jekyll. Written in JavaScript. Transforms a directory of templates (of varying types) into HTML.

Works with:

  • HTML (.html)
  • Markdown (.md) (using markdown-it)
  • Liquid (.liquid) (used by Jekyll)
  • Nunjucks (.njk)
  • Handlebars (.hbs)
  • Mustache (.mustache)
  • EJS (.ejs)
  • Haml (.haml)
  • Pug (formerly Jade, .pug)
  • JavaScript Template Literals (.jstl) (`strings with backticks`)

Getting Started

Requires version 8 of Node.js or higher.

npm install -g @11ty/eleventy

Available on npm. Previously known as eleventy-cli. Read more about local installation.

Run Eleventy

Make a directory with your project in it. Don’t include the first $ when you run these commands.

$ mkdir eleventy-sample
$ cd eleventy-sample

Run eleventy:

$ eleventy
Wrote 0 files in 0.02 seconds

Makes sense—this is an empty folder with no templates inside. So, let’s make a few templates.

$ echo "<!doctype html><title>Page title</title>" > index.html
$ echo "# Page header" > README.md

We’ve now created an HTML template and a markdown template. Now run eleventy again:

$ eleventy
Writing _site/README/index.html from ./README.md
Writing _site/index.html from ./index.html
Wrote 2 files in 0.10 seconds

This will compile any content templates in the current directory or subdirectories into the output folder (defaults to _site). Congratulations—you made something with eleventy! Now put it to work with templating syntax, front matter, and data files (read on below).

See more sample projects

  1. @Heydon’s lovely Inclusive Web Design Checklist, converted to use eleventy. The original project took a JSON file and converted it HTML with some one-off JavaScript. This uses eleventy to transform the data using a nunjucks template, resulting in a cleaner, templated setup.
  2. 11ty-logo generates a template with eleventy that has hundreds of different font combinations in an attempt to pick a logo.

Command line usage

# Searches the current directory, outputs to ./_site
eleventy

# Equivalent to
eleventy --input=. --output=_site

# Automatically run when input template files change.
eleventy --watch

# Override the default eleventy project config filename (.eleventy.js)
eleventy --config=myeleventyconfig.js

# Use only a subset of template types
eleventy --formats=md,html,ejs

# Find out the most up-to-date list of commands (there are more)
eleventy --help

Debugging

Having trouble? Want to see what Eleventy is doing behind the scenes? Use DEBUG mode. We’re taking advantage of the excellent debug package for this. Enable with the DEBUG env variable, either specific to eleventy (DEBUG=Eleventy*) or globally (DEBUG=*):

DEBUG=Eleventy* eleventy

This will tell you exactly what directories Eleventy is using for data, includes, input, and output. It’ll tell you what search globs it uses to find your templates and what templates it finds. If you’re having trouble, enable this.

A small sample of the output:

Eleventy Directories:
Eleventy Input: docs-src
Eleventy Data: docs-src/_data
Eleventy Includes: docs-src/_includes
Eleventy Output: docs
Eleventy Template Formats: njk

Read more at the debug package documentation.

Example: Default options

eleventy --input=. --output=_site

A template.md in the current directory will be rendered to _site/template/index.html. Read more at Permalinks

Example: Same Input and Output

Yes, you can use the same input and output directories, like so:

# Parse and write Markdown to HTML, respecting directory structure.
eleventy --input=. --output=. --formats=md

⚠️ Careful with --formats=html here! If you run eleventy more than once, it’ll try to process the output files too. Read more at Common Pitfalls.

Using Data (optional)

Front Matter on any Template

You may use front matter on any template file to add local data. Front matter looks like this:

---
title: My page title
---
<!doctype html>
<html>
…

This allows you to assign data values right in the template itself. Here are a few front matter keys that we use for special things:

  • permalink: Add in front matter to change the output target of the current template. You can use template syntax for variables here. Read more about Permalinks.
  • layout: Wrap current template with a layout template found in the _includes folder. Read more about Layouts.
  • pagination: Enable to iterate over data. Output multiple HTML files from a single template. Read more about Pagination.
  • tags: A single string or array that identifies that a piece of content is part of a collection. Collections can be reused in any other template. Read more about Collections.
  • date: Override the default date (file creation) to customize how the file is sorted in a collection. Read more about Collections.

Special Variables

Data Files

Optionally add data files to add global static data available to all templates. Uses the dir.data configuration option. Read more about Template Data Files.

Ignore files (optional)

Add an .eleventyignore file to the root of your input directory for a new line-separated list of files that will not be processed. Paths listed in your project’s .gitignore file are automatically ignored.

Configuration (optional)

Add an .eleventy.js file to root directory of your project to override these configuration options with your own preferences. Example:

module.exports = {
  dir: {
    input: "views"
  }
};
Configuration Option KeyDefault OptionValid OptionsCommand Line OverrideDescription
dir.input.Any valid directory.--inputControls the top level directory inside which the templates should be found.
dir.includes_includesAny valid directory inside of dir.input.N/AControls the directory inside which the template includes/extends/partials/etc can be found.
dir.data_dataAny valid directory inside of dir.input.N/AControls the directory inside which the global data template files, available to all templates, can be found.
dir.output_siteAny valid directory.--outputControls the directory inside which the transformed finished templates can be found.
dataTemplateEngineliquidA valid template engine or falseN/ARun the data.dir global data files through this template engine before transforming it to JSON.
markdownTemplateEngineliquidA valid template engine or falseN/ARun markdown through this template engine before transforming it to HTML.
htmlTemplateEngineliquidA valid template engine or falseN/ARun HTML templates through this template engine before transforming it to (better) HTML.
templateFormatsliquid,ejs, md,hbs, mustache,haml, pug,njk,htmlAny combination of these--formatsSpecify which type of templates should be transformed.
htmlOutputSuffix-oStringN/AIf the input and output directory match, index.html files will have this suffix added to their output filename to prevent overwriting the template.
filters{}ObjectN/AFilters can transform output on a template. Take the format function(str, outputPath) { return str; }. For example, use a filter to format an HTML file with proper whitespace.
onContentMappedfunction(map) {}FunctionN/ACallback executes when the full data map for all content is generated.
handlebarsHelpers{}ObjectN/AThe helper functions passed to Handlebars.registerHelper. Helper names are keys, functions are the values.
nunjucksFilters{}ObjectN/AThe helper functions passed to nunjucksEnv.addFilter. Helper names are keys, functions are the values.

Template Engine Features

Here are the features tested with each template engine that use external files and thus are subject to setup and scaffolding.

EngineFeatureSyntax
ejs✅ Include (Preprocessor Directive)<% include /user/show %> looks for _includes/show/user.ejs
ejs✅ Include (pass in Data)<%- include('/user/show', {user: 'Ava'}) %> looks for _includes/user/show.ejs
Liquid✅ Include{% include 'show/user' %} looks for _includes/show/user.liquid
Liquid✅ Include (pass in Data){% include 'user' with 'Ava' %}
Liquid✅ Include (pass in Data){% include 'user', user1: 'Ava', user2: 'Bill' %}
Mustache✅ Partials{{> user}} looks for _includes/user.mustache
Handlebars✅ Partials{{> user}} looks for _includes/user.hbs
Handlebars✅ HelpersSee handlebarsHelpers configuration option.
HAML❌ but 🔜 Filters
Pug✅ Includesinclude /includedvar.pug looks in _includes/includedvar.pug
Pug✅ Excludesextends /layout.pug looks in _includes/layout.pug
Nunjucks✅ Includes{% include 'included.njk' %} looks in _includes/included.njk
Nunjucks✅ Extends{% extends 'base.njk' %} looks in _includes/base.njk
Nunjucks✅ Imports{% import 'macros.njk' %} looks in _includes/macros.njk
Nunjucks✅ FiltersSee nunjucksFilters configuration option.

Tests

npm run test
npm run watch:test

Competitors

Major Roadmapped Features

  • Pagination
  • Tagging of content
  • Extensibility with system-wide content mapping IN PROGRESS
  • Components system for development reusability
  • Plugin system

FAQs

Package last updated on 12 Jan 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc