![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
druxt-blocks
Advanced tools
Drupal Block and Block Region Druxt components.
$ npm install druxt-blocks
Add module to nuxt.config.js
module.exports = {
modules: ['druxt-blocks'],
druxt: {
baseUrl: 'https://demo-api.druxtjs.org',
blocks: {
query: {
fields: [],
},
},
},
}
The DruxtBlock component renders a Drupal JSON:API Block resource by ID or UUID.
<DruxtBlock :id="drupal_internal__id" />
<DruxtBlock :uuid="uuid" />
See the DruxtBlock API Documentation for more information.
The DruxtBlockRegion component renders all visible blocks for the specified theme region.
<DruxtBlockRegion :name="name" :theme="theme" />
See the DruxtBlockRegion API Documentation for more information.
Both components can be themed by providing a default template:
<DruxtBlock :id="id">
<template #default="{ block }">
{{ block }}
</template>
</DruxtEntity>
The module also provides Wrapper components with scoped slots for theming.
See the Druxt Theming guide for more information.
These options are specific to this module.
Option | Type | Required | Default | Description |
---|---|---|---|---|
block.query.fields | string[] | No | [] | An array of fields to filter all Block JSON:API queries. |
These options are available to all Druxt modules.
Option | Type | Required | Default | Description |
---|---|---|---|---|
axios | object | No | {} | Axios instance settings. |
baseUrl | string | Yes | null | Base URL for the Drupal installation. |
endpoint | string | No | /jsonapi | JSON:API Endpoint of the Drupal installation. |
FAQs
Drupal Block and Block Region Druxt components.
The npm package druxt-blocks receives a total of 114 weekly downloads. As such, druxt-blocks popularity was classified as not popular.
We found that druxt-blocks demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.