Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
gatsby-source-drupal
Advanced tools
Gatsby source plugin for building websites using the Drupal CMS as a data source
Source plugin for pulling data into Gatsby from Drupal sites.
Pulls data from Drupal sites with the Drupal JSONAPI module installed.
An example site for using this plugin is at https://using-drupal.gatsbyjs.org/
This module is at prototype-level. It currently only pulls from Drupal article nodes and users. TODOs include making it work with all node types.
npm install --save gatsby-source-drupal
// In your gatsby-config.js
plugins: [
{
resolve: `gatsby-source-drupal`,
options: {
baseUrl: `http://dev-gatsbyjs-d8.pantheonsite.io`,
},
},
]
You can query nodes created from Drupal like the following:
{
allDrupalNodeArticle {
edges {
node {
title
nid
created(formatString: "DD-MMM-YYYY")
author {
name
}
}
}
}
}
FAQs
Gatsby source plugin for building websites using the Drupal CMS as a data source
The npm package gatsby-source-drupal receives a total of 2,916 weekly downloads. As such, gatsby-source-drupal popularity was classified as popular.
We found that gatsby-source-drupal demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.