A statically typed site generator for Elm.
Go to file
2023-01-24 16:08:09 -08:00
.github/workflows Try running elm-review before codemods. 2023-01-07 15:36:35 -08:00
codegen Convert to ESM. 2023-01-22 09:33:32 -08:00
cypress Use HTTP conditional requests, and fix some handling of HTTP error cases for BackendTask error paths (return the error data instead of handling them as build errors). 2023-01-06 10:03:19 -08:00
docs Update FAQ.md 2023-01-21 18:59:29 -08:00
examples Update adapter script. 2023-01-22 15:47:51 -08:00
generator Use ESM for mocha tests. 2023-01-24 15:59:53 -08:00
plugins Rename BackendTask.Custom.get -> BackendTask.Custom.run. 2023-01-17 07:14:03 -08:00
review Ignore error. 2023-01-17 17:21:39 -08:00
src Remove unused. 2023-01-23 16:28:55 -08:00
tests Fix test error. 2023-01-17 15:46:40 -08:00
.all-contributorsrc docs: update .all-contributorsrc [skip ci] 2020-07-19 18:23:51 +00:00
.gitignore Add boilerplate for elm-codegen. 2022-09-12 10:16:00 -07:00
.gitmodules Add git submodule for vendoring elm-codegen. 2022-09-20 13:18:02 -07:00
.nvmrc Use newer node version. 2022-01-20 19:20:15 -08:00
.prettierrc Add prettier config. 2021-07-10 07:53:14 -07:00
CHANGELOG-ELM.md Update changelog. 2021-08-03 13:39:00 -07:00
CHANGELOG-NPM.md Update changelog. 2021-08-27 11:52:11 -07:00
CONTRIBUTING.md Add webpack performance profiling instructions 2020-08-18 14:41:26 -07:00
cypress.config.ts Bump timeout duration. 2023-01-08 12:01:00 -08:00
docs.json Remove unused. 2023-01-23 16:28:55 -08:00
elm-tooling.json Update dependencies. 2022-11-15 16:40:02 -08:00
elm.json Bump Elm package. 2023-01-17 17:16:47 -08:00
jsconfig.json Set up proof of concept for webpack-free build. 2020-10-10 18:07:36 -07:00
LICENSE Add LICENSE file. 2019-09-20 13:58:20 -07:00
netlify.toml Install elm-format before running build. 2022-02-13 14:56:41 -08:00
package-lock.json Convert to ESM. 2023-01-22 09:33:32 -08:00
package.json Convert to ESM. 2023-01-22 09:33:32 -08:00
README.md Update compatability key. 2023-01-16 21:46:40 -08:00
test.sh Update dependencies. 2022-11-15 16:40:02 -08:00
tsconfig.json Add tsconfig to try to fix cypress build error. 2023-01-24 16:08:09 -08:00
update-compatibility-keys.js Update compatability key. 2023-01-16 21:46:40 -08:00

elm-pages Netlify Status Build Status npm Elm package

All Contributors

Deploy to Netlify

A statically typed site generator, written with pure Elm.

Getting Started Resources

Key features

SEO made easy

With elm-pages, SEO is as easy as calling a type-safe, high-level Elm API and passing in data from your content's metadata.

The metadata is just Elm data that you define however you want, using a Json Decoder to grab data out of your markdown frontmatter.

import MyMetadata exposing (MyMetadata)

head : BlogMetadata -> List (Head.Tag Pages.PathKey)
head meta =
  Seo.summaryLarge
    { canonicalUrlOverride = Nothing
    , siteName = "elm-pages"
    , image =
      { url = PagesNew.images.icon
      , alt = meta.description
      , dimensions = Nothing
      , mimeType = Nothing
      }
    , description = meta.description
    , locale = Nothing
    , title = meta.title
    }
    |> Seo.article
      { tags = []
      , section = Nothing
      , publishedTime = Just (Date.toIsoString meta.published)
      , modifiedTime = Nothing
      , expirationTime = Nothing
      }

Optimized for performance

elm-pages has a set of features built-in to make sure your page is blazing fast on any device.

  • Automatic page pre-rendering
  • Page content is split up per-page so page content downloads and parses just-in-time
  • Page pre-fetching on link hover

Try out elm-pages, open up Lighthouse, and see for yourself! Or check out https://elm-pages.com (find the source code in the examples/docs/ folder).

What's next?

Take a look at the current projects to see the current priorities!

https://github.com/dillonkearns/elm-pages/projects

Compatibility Key

You will see an error if the NPM and Elm package do not have a matching Compatibility Key. Usually it's best to upgrade to the latest version of both the Elm and NPM packages when you upgrade. However, in case you want to install versions that are behind the latest, the Compatibility Key is included here for reference.

Current Compatibility Key: 6.

Contributors

Thanks goes to these wonderful people (emoji key):


Daniel Marín

💻

Steven Vandevelde

💻

Johannes Maas

📓 💻

Wiktor Toporek

💻

Luke Westby

💻

This project follows the all-contributors specification. Contributions of any kind welcome!