Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@dcodegroup-au/page-builder

Package Overview
Dependencies
Maintainers
2
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dcodegroup-au/page-builder

This package provides functionality for page builder in Laravel. This includes managing pages and their content.

latest
Source
npmnpm
Version
0.7.4
Version published
Maintainers
2
Created
Source

Page Builder

This package provides functionality for a CMS-like page builder in Laravel. It includes tools for managing pages and their content, offering a seamless experience for developers and end-users.

Features

  • Integration with Vue 3 for modern frontend development.
  • Pre-built components like PageBuilder, SlideEdit, and PageRender.

Installation

You can install the package via pnpm:

pnpm install @dcodegroup-au/page-builder

Usage

Importing Components

To use the components in your Vue 3 application, import them as follows:

import { createApp } from 'vue'

import App from './App.vue'
import { PageBuilder, SlideEdit, PageRender } from '@dcodegroup-au/page-builder'
import '@dcodegroup-au/page-builder/dist/page-builder.css'

const app = createApp(App)
app.component('SlideEdit', SlideEdit)
app.component('PageBuilder', PageBuilder)
app.component('PageRender', PageRender)

app.mount('#app')

Example Application

You can run the example application included in the repository:

cd example
pnpm run dev

Development

Building the Package

To build the package, run:

pnpm run build

Publishing

This package is automatically published to the NPM registry when changes are pushed to the main branch. The publishing process is handled by a GitHub Actions workflow.

Contributing

Contributions are welcome! Please open an issue or submit a pull request on the GitHub repository.

License

This package is licensed under the ISC License. See the LICENSE file for more details.

Support

For issues or feature requests, please visit the GitHub Issues page.

FAQs

Package last updated on 23 Sep 2025

Did you know?

Socket

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.

Install

Related posts