### Development Commands Source: https://github.com/credence-analytics/page-builder-docs/blob/main/CLAUDE.md Common npm scripts for managing the development environment, including installing dependencies, running a development server, building for production, linting, and starting a mock server. ```bash # Install dependencies npm install # Development server (port 9698) npm run serve # Production build npm run build # Lint and fix files npm run lint # Start JSON mock server (for development) npm run json:server ``` -------------------------------- ### Page Section Template Example Source: https://github.com/credence-analytics/page-builder-docs/blob/main/README.md Provides an example of a Nunjucks template for a page section, defining its HTML structure and using a custom component 'b-table' to display data. It shows how to bind data and fields dynamically. ```njk
Today's Date: {{current_date}}
| {{category.name}} |
Records: {{total_records}}
{% else %}No data available
{% endif %}{{ sectionContent }}
{# Embedding another section #}{{ sectionContent }}
{# Embedding another section #}Total Records: {{total_records}}