Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

contentful-hugo

Package Overview
Dependencies
Maintainers
1
Versions
106
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

contentful-hugo

Node module that pulls data from Contentful and turns it into markdown files for Hugo. Can be used with other Static Site Generators, but has some Hugo specific features.

  • 1.3.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
87
increased by1.16%
Maintainers
1
Weekly downloads
 
Created
Source

Contentful Hugo

This is a simple Node.js CLI tool that pulls data from Contentful CMS and turns it into Markdown or YAML files for use with a static site generator. It can be used with any static site generator that uses Markdown with YAML frontmatter, but it has some features that are specific to Hugo.

Table of Contents

Prerequisites

Install Node.js

Installation

with NPM

npm install contentful-hugo

with Yarn

yarn add contentful-hugo

Usage

Complete configuration then run the following command in the terminal

contentful-hugo

Failure to complete configuration will return an error in the console

Environment Variables not set

Config file not found

Configuration

Environment Variables

Before using you must first set the following environment variables. CONTENTFUL_SPACE, and CONTENTFUL_TOKEN.

This can be done with a .env file in the root directory of your project.

CONTENTFUL_SPACE = '<your-space-id>`
CONTENTFUL_TOKEN = '<content-api-access-token>`

You can also declare the environment variables in the command line

Powershell:

$env:CONTENTFUL_SPACE="<contentful_space_id>"
$env:CONTENTFUL_TOKEN="<contentful_acessToken>"

Bash:

export CONTENTFUL_SPACE=<contentful_space_id>
export CONTENTFUL_TOKEN=<contentful_acessToken>

Config File

In order to pull the data you want you will need to create a contentful-settings.yaml file in the root of your repository.

Example contentful-settings.yaml file (see below for complete configuration options)

singleTypes: 
# fetches only the most recently updated entry in a particular content type
# Generated file will be named after the fileName setting
  - id: homepage
    directory: /content/
    fileName: _index
    fileExtension: md 
    # this will generate a file named "_index.md" in the "content" directory

  - id: siteSettings
    directory: /data/
    fileName: settings
    fileExtension: yaml
    # this will generate a file named settings.yaml in the "data" directory

repeatableTypes: 
# fetches all the entries of a content type and places them in a directory. 
# Generated files will be named after their Entry ID in Contentful.
  - id: posts
    directory: /content/posts/
    fileExtension: md
    mainContent: content
  
  - id: seoFields
    isHeadless: true 
    directory: /content/seo-fields/

  - id: reviews
    directory: /content/reviews/
    mainContent: reviewBody

  - id: staff
    isHeadless: true
    directory: /content/staff/

Configuration Options

fieldrequireddescription
idrequiredcontentful content type ID goes here
directoryrequireddirectory where you want the file(s) to be generated (leading and trailing slashes required for the time being)
fileNamerequired (single types only)name of the file generated
fileExtensionoptionalcan be "md", "yml", or "yaml" (defaults to "md")
isHeadlessoptional (repeatable types only)turns all entries in a content type into headless leaf bundles (see hugo docs)
mainContentoptionalfield ID for field you want to be the main Markdown content. (Does not work with rich text fields)

Expected Output

Files will be generated in the directory specified in the contentful-settings.yaml file. Front matter will be in YAML format. Files of single types will be named after fileName specified in the config file. Files of repeatable types will be named after their entry ID in Contenful, which makes it easy to link files together.

Default Date and Time Fields

The following fields will always appear in your frontmatter:

updated: # the last time this entry was update in Contentful
createdAt: # when the entry was created in Contentful
date: # defaults to creation date unless you have a field with the id "date" then it get's overwritten

Asset Information

Asset like images and videos come with some extra information that makes it easy to implement things like alt text or layouts that rely on knowing the image dimensions. The fields are as follows:

assetFieldName:
  assetType: # indicates the asset type such as "image" "video" "audio" ect.
  url: # url of the asset
  title: # title of the asset written in Contentful
  description: # description of the asset written in Contentful
  width: # width of the asset (images only)
  height: # height of the asset (images only )

If you're using Hugo you can access the information like below:

<img src="{{ .Params.assetFieldName.url }}" width="{{ .Params.assetFieldName.width }}">

This same information will also appear in asset arrays like a gallery:

myGallery:
  - 
    assetType: "image/jpg"
    url: "//link-to-image.jpg"
    title: "Image 1"
    description: "Image 1 Description"
    width: 500
    height: 500
  - 
    assetType: "image/jpg"
    url: "//link-to-image-2.jpg"
    title: "Image 2"
    description: "Image 2 Description"
    width: 1920
    height: 1080

Entries

Linked entries will include fields for it's id and it's content type id.

linkedEntry:
  id: <contentful-entry-id>
  typeId: <content-type-ID>


#example with array of linked entries

relatedArticles:
  -
    id: "41UFfIhszbS1kh95bomMj7"
    typeId: "articles"
  -
    id: "85UFfIhsacS1kh71bpqMj7"
    typeId: "articles"

All files are named after their entry id in Contentful making it easy to retrieve it using .Site.GetPage in Hugo

{{ with .Site.GetPage "<path-to-file>/<entry-id>.md" }}
  {{ .Title }}
{{ end }}

Rich Text Fields


Contenful Hugo does not work with "inline-entry" "link-to-asset" and "link-to-entry" node types at this time. If you wish to use this tool you will have to disable those in Contentful for the time being.


A Rich text field will produce nested arrays mirroring the JSON structure that they have in the API. Each node will need to be looped through and produce HTML depending on the nodeType field.

richTextField:
  - nodeType: "paragraph"
    data: {}
    content:
      - data: {}
        marks: []
        value: "This is a simple paragraph."
        nodeType: "text"
 - nodeType: "paragraph"
    data: {}
    content:
      - data: {}
        marks: []
        value: "This is a paragraph with "
        nodeType: "text"
      - data: {}
        marks:
          - type: "italic"
        value: "italicized text."
        nodeType: "text"
 - nodeType: "embedded-asset-block"
    data:
      assetType: "image/jpeg"
      url: "//images.ctfassets.net/some-image-url.jpg"
      title: "Image title will appear here"
      description: "Image description will appear here"
      width: 1920
      height: 1080
    content: []

In addition a plaintext version of the field will be generated using the field ID appended with "_plaintext". This allows you to quickly fetch the text by itself without any of the other data. A simple use case would be using the plaintext output to automatically generate a meta description for a webpage.

richTextField_plaintext: "This is a simple paragraph. This is a paragraph with italicized text."

Compatibility Issues

These are know compatibility issues.

  • Hugo cannot parse date field if field is set to "date and time without timezone"
  • Rich Text Fields give errors when using "inline-entry" "link-to-asset" "link-to-entry". Please disable these for the time being.

Keywords

FAQs

Package last updated on 20 Aug 2019

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