Socket
Socket
Sign inDemoInstall

gatsby-source-drupal-menu-links

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gatsby-source-drupal-menu-links

Integrates Drupal's jsonapi_menu_items module with Gatsby


Version published
Weekly downloads
314
increased by29.75%
Maintainers
1
Weekly downloads
 
Created
Source

Overview

Provides gatsby integration for the Drupal JSON:API menu items module

Install

npm install --save gatsby-source-drupal-menu-links

Setup

In Drupal land 💧

  • Enable jsonapi module from core.
  • Add and enable jsonapi_menu_items module
composer require "drupal/jsonapi_menu_items"
drush en -y jsonapi_menu_items

In Gatsby land 🟣

// In your gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: `gatsby-source-drupal-menu-links`,
      options: {
        baseUrl: `https://live-contentacms.pantheonsite.io/`,
        apiBase: `api`, // optional, defaults to `jsonapi`
        menus: ["main", "account"], // Which menus to fetch, there are the menu IDs.
      },
    },
  ],
}

Keywords

FAQs

Package last updated on 19 Jun 2024

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