JSPM

@will_m59/nexus-cms-core

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q20043F
  • License MIT

Modern visual CMS editor with drag-and-drop interface for Next.js applications

Package Exports

  • @will_m59/nexus-cms-core
  • @will_m59/nexus-cms-core/dist/index.css

Readme

@nexus-cms/core

Modern visual CMS editor with drag-and-drop interface for Next.js applications.

Features

  • 🎨 Visual drag-and-drop page builder
  • 🔧 Real-time property editing
  • 📱 Responsive design preview
  • 🌍 Multi-language support
  • 💾 Flexible storage adapters
  • 🎯 Component-based architecture
  • ⚡ Built for Next.js 13+ App Router

Installation

npm install @nexus-cms/core @nexus-cms/components

Quick Start

import { NexusCMS } from '@nexus-cms/core';
import '@nexus-cms/core/dist/index.css';

function AdminPage() {
  const config = {
    components: [
      // Your component definitions
    ],
    storage: new YourStorageAdapter(),
    locales: {
      default: 'en',
      available: ['en', 'fr']
    }
  };

  return (
    <NexusCMS
      config={config}
      onSave={handleSave}
      onPublish={handlePublish}
    />
  );
}

Documentation

For full documentation, visit https://github.com/zlikeness/nexus-cms

License

MIT