Socket
Book a DemoInstallSign in
Socket

@livecms/nuxt-live-edit

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@livecms/nuxt-live-edit

Live content edit

latest
npmnpm
Version
1.9.1
Version published
Weekly downloads
33
1550%
Maintainers
1
Weekly downloads
 
Created
Source

@livecms/nuxt-live-edit

npm version npm downloads License

Live content edit. Nuxt 4 ready

📖 Release Notes

Setup

  • Add @livecms/nuxt-live-edit dependency to your project
yarn add @livecms/nuxt-live-edit # or npm install @livecms/nuxt-live-edit
  • Add @livecms/nuxt-live-edit to the modules section of nuxt.config.js
{
  modules: [
    '@livecms/nuxt-live-edit',
  ],

  liveEdit: {
    api: process.env.LIVE_EDIT_API, // https://example.livecms.cz/api or custom API
    assets: process.env.LIVE_EDIT_ASSETS, // S3 storage - https://s3.eu-central-1..
    imagekit: process.env.LIVE_EDIT_IMAGEKIT, // Imagekit url - https://ik.imagekit.io/something
  },
}
  • Add <live-edit /> to app.vue

  • Fetch texts in app.vue setup

<script setup>
await useLiveEdit().fetchTexts();
</script>

Compatibility

  • Nuxt 3.12.0+
  • Nuxt 4.0.0+

Development

  • Clone this repository
  • Install dependencies using yarn install or npm install
  • Start development playground using yarn dev

License

MIT License

Copyright (c) David Veselý jsem@davidvesely.cz

FAQs

Package last updated on 02 Aug 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