Eleventy The possum is Eleventy’s mascot

Eleventy Documentation

This is an older version of Eleventy. Go to the newest Eleventy docs (current path: /docs/global-installation/) or the full release history.
Menu

Install Eleventy Globally #

Installing globally is a quick way to get started but it is preferred to use local project installation instead. Local installation will cause fewer interoperability issues later if you use Eleventy on multiple projects that may want to use different Eleventy versions.

Don’t include ~ $ when you run these commands.

npm install -g @11ty/eleventy

The above adds an eleventy command that you can use in any directory.

eleventy --version
0.11.1
If you’re planning on deploying your site using a service like Netlify (that will run your build on their servers), you must use the local installation method and not global installation.

Old, outdated eleventy-cli #

If you see 0.1.9 after you run eleventy --version you have installed the deprecated eleventy-cli instead. We renamed Eleventy to use our @11ty npm organization a long time ago. You will need to uninstall eleventy-cli:

npm uninstall -g eleventy-cli