# Getting started
DruxtJS requires a NuxtJS frontend and a Drupal JSON:API backend:
# Drupal
Download the Druxt module (opens new window):
composer require drupal/druxt
1Install the module:
Add the "access druxt resources" permission to a user/role:
# NuxtJS
Install the Druxt module (opens new window):
npm i druxt
1Add the module and configuration to
nuxt.config.js
:module.exports = { modules: [ 'druxt' ], druxt: { baseUrl: 'https://demo-api.druxtjs.org' } }
1
2
3
4
5
6
7
8