SlideShare a Scribd company logo
Getting started with the Lupus
Nuxt.js Drupal stack
Wolfgang Ziegler // fago
About me
Wolfgang Ziegler // fago
CEO / CTO of drunomics GmbH
Contributions
○ Drupal 8 Entity API & Typed Data API
○ Contrib: Rules, Entity API, Field
Collection, Profile2
Twitter: @the_real_fago
drupal.org/u/fago
Lupus Nuxt.js Drupal Stack
Agenda
● Short introduction
● Getting started
● Example project
… so why Custom Elements?
Don’t throw all Drupal features away!
➔ Routing, Path resolution & URL aliases
➔ Editorial control of pages & layouts
➔ Cookie-based authentication
➔ Caching, Previews, ...
Easy to render client-side!
➔ Web components, Vue.js, React, ...
Custom Elements everywhere
=
Components everywhere
Custom Element example
● like Vue.js: Easy to get started, performant & enjoyable!
● includes all needed for fully-fledged applications
○ Transpilation, CSS (Pre-)Processors
○ Routing, with automatic code splitting, …
● Mode: Single Page Application or Universal
● Deployment target: Server Side Rendered or Static
Architecture overview
GET /home GET drupal.site/home
Custom Elements
HTML
Server-Side-
Rendering
Subsequent
pages
GET drupal.site/article/example
Custom Elements
Getting started
Drupal setup
composer require drupal/lupus_ce_renderer
drush en lupus_ce_renderer -y
drush config:set custom_elements.settings markup_style vue-3
Test it!
https://your-drupal.site/node/1?_format=custom_elements
Nuxt.js setup
npm init nuxt-app <project-name>
npm install nuxtjs-drupal-ce
# Enable the module!
# Scaffold initial components
rm -f layouts/default.vue && $(npm bin)/nuxt-drupal-ce-init
Nuxt.js module setup
nuxt.config.js:
{
buildModules: [
'nuxtjs-drupal-ce'
],
'nuxtjs-drupal-ce': {
baseURL: 'https://your-drupal.site'
}
}
Run Nuxt.js
// Development mode
npm run dev
// Production mode
npm run build
npm run start
Menu integration
● composer require drupal/rest_menu_items
● Enable menu REST route, e.g. via Rest UI module
● Grant permissions to the REST menu items resource
● Enable menu fetching in Nuxt.js:
un-comment the nuxtServerInit action in store/init.js
Example!
Authentication
Strategy
● Allow Cross-Origin-Requests (CORS) from the browser to Drupal
● Drupal backend needs to allow CORS from www.example.com
● Login at drupal.example.com
→ Cookie is set for drupal.example.com
● Optional: For SSR with authentication configure a shared cookie
domain e.g. .example.com for
drupal.example.com and www.example.com (Nuxt.js)
Drupal setup
sites/default/services.yml:
parameters:
cors.config:
enabled: enabled
allowedMethods: ['GET', 'POST']
allowedOrigins: ['*']
supportsCredentials: true
Nuxt.js setup
nuxt.config.js:
{
'nuxtjs-drupal-ce': {
baseURL: 'https://your-drupal.site',
useProxy: false,
axios: {
withCredentials: true
}
}
}
Nuxt.js setup
nuxt.config.js:
{
'nuxtjs-drupal-ce': {
baseURL: 'https://your-drupal.site',
useProxy: false,
axios: {
withCredentials: true
}
}
}
Example!
Resources
● Documentation site:
stack.lupus.digital
● Example project (using ddev)
github.com/drunomics/lupus-nuxtjs-drupal-stack-example
● Help?
#custom-elements at Drupal slack!
Thank you!

More Related Content

PDF
Decoupling Drupal mit dem Lupus Nuxt.js Drupal Stack
PPTX
Linux distributions
PDF
Linux Servers
PPTX
kali linux.pptx
PPT
Introduction of os and types
PPTX
[오픈소스컨설팅]Ansible overview
PDF
Apresentação dev ios
Decoupling Drupal mit dem Lupus Nuxt.js Drupal Stack
Linux distributions
Linux Servers
kali linux.pptx
Introduction of os and types
[오픈소스컨설팅]Ansible overview
Apresentação dev ios

What's hot (20)

PPT
Common linux ubuntu commands overview
PPTX
PDF
Autotools
PDF
[오픈소스컨설팅] Open Stack Ceph, Neutron, HA, Multi-Region
PPTX
Network operating system
PDF
Unidad 14 - SAMBA, NFS y LDAP
PDF
Google AdMob Overview
PDF
configure a DHCP server on Fedora.pdf
PPTX
9 networking
PPTX
Moodle api tutorial
PDF
Spatio-temporal Data Handling With GeoServer for MetOc And Remote Sensing
PDF
How To Configure SNMP Logging on RHEL 7
PPT
Architecture of Linux
PDF
Free ipa installation and cluster configuration, freeipa client connection
PPT
Architecture des Systèmes Logiciels
PDF
Fast api
ODP
Android permission system
PPTX
Kafka monitoring using Prometheus and Grafana
PDF
Cours design pattern m youssfi partie 8 stat, template method, command , medi...
PPTX
Web services SOAP et REST
Common linux ubuntu commands overview
Autotools
[오픈소스컨설팅] Open Stack Ceph, Neutron, HA, Multi-Region
Network operating system
Unidad 14 - SAMBA, NFS y LDAP
Google AdMob Overview
configure a DHCP server on Fedora.pdf
9 networking
Moodle api tutorial
Spatio-temporal Data Handling With GeoServer for MetOc And Remote Sensing
How To Configure SNMP Logging on RHEL 7
Architecture of Linux
Free ipa installation and cluster configuration, freeipa client connection
Architecture des Systèmes Logiciels
Fast api
Android permission system
Kafka monitoring using Prometheus and Grafana
Cours design pattern m youssfi partie 8 stat, template method, command , medi...
Web services SOAP et REST
Ad

Similar to Getting started with the Lupus Nuxt.js Drupal Stack (20)

PDF
Pre rendering media sites with nuxt.js & netlify
PDF
Drupalcon 2021 - Nuxt.js for drupal developers
PDF
Custom elements - An alternate Render API for decoupled Drupal
PDF
Lupus Decoupled Drupal - Drupal Austria Meetup - 2023-04.pdf
PPTX
Server Side Rendering with Nuxt.js
PDF
Getting Started with DrupalGap
PDF
Drupal Is Not Your Web Site
PDF
Drupal is not your Website
PDF
Using VueJS in front of Drupal 8
PDF
Bringing Interactivity to Your Drupal Site with Node.js Integration
PDF
nuxt-en.pdf
PDF
Intro to drupal_7_architecture
PDF
Drupal Recipe
PPTX
Decoupled drupal + vue.js
ODP
Custom module and theme development in Drupal7
PDF
Drupal development, deployment, and automation with Puppet
PDF
Nuxtjs cheat-sheet
PDF
Talking to Web Services
PPTX
Rapid site production with Drupal
PDF
Drupal Extreme Scaling
Pre rendering media sites with nuxt.js & netlify
Drupalcon 2021 - Nuxt.js for drupal developers
Custom elements - An alternate Render API for decoupled Drupal
Lupus Decoupled Drupal - Drupal Austria Meetup - 2023-04.pdf
Server Side Rendering with Nuxt.js
Getting Started with DrupalGap
Drupal Is Not Your Web Site
Drupal is not your Website
Using VueJS in front of Drupal 8
Bringing Interactivity to Your Drupal Site with Node.js Integration
nuxt-en.pdf
Intro to drupal_7_architecture
Drupal Recipe
Decoupled drupal + vue.js
Custom module and theme development in Drupal7
Drupal development, deployment, and automation with Puppet
Nuxtjs cheat-sheet
Talking to Web Services
Rapid site production with Drupal
Drupal Extreme Scaling
Ad

Recently uploaded (20)

PDF
System and Network Administraation Chapter 3
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PPTX
Introduction to Artificial Intelligence
PPTX
Odoo POS Development Services by CandidRoot Solutions
PDF
Digital Strategies for Manufacturing Companies
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PPTX
ISO 45001 Occupational Health and Safety Management System
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PPTX
CHAPTER 2 - PM Management and IT Context
PPTX
ManageIQ - Sprint 268 Review - Slide Deck
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
System and Network Administraation Chapter 3
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
How to Migrate SBCGlobal Email to Yahoo Easily
Introduction to Artificial Intelligence
Odoo POS Development Services by CandidRoot Solutions
Digital Strategies for Manufacturing Companies
Odoo Companies in India – Driving Business Transformation.pdf
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Wondershare Filmora 15 Crack With Activation Key [2025
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Navsoft: AI-Powered Business Solutions & Custom Software Development
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
ISO 45001 Occupational Health and Safety Management System
VVF-Customer-Presentation2025-Ver1.9.pptx
CHAPTER 2 - PM Management and IT Context
ManageIQ - Sprint 268 Review - Slide Deck
PTS Company Brochure 2025 (1).pdf.......
How to Choose the Right IT Partner for Your Business in Malaysia

Getting started with the Lupus Nuxt.js Drupal Stack