npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@neuctra/cms-core

v1.0.11

Published

A powerful, modular CMS core engine for building modern content editors, blogs, notes, and structured content systems with React and Tailwind CSS.

Readme

@neuctra/cms-core

A powerful, modular CMS core engine for building modern content editors, blogs, notes, and structured content systems with React and Tailwind CSS.

Built for developers who want a flexible block-based editor system with a clean API and production-ready architecture.


✨ Features

  • Block-based content system
  • Fast & lightweight React components
  • Tailwind CSS ready (zero-config styling integration)
  • Fully customizable editor UI
  • Live preview support
  • Structured JSON content model
  • Easy integration into any React app
  • Headless CMS-style architecture
  • Extendable block system (text, code, quote, tables, etc.)

Installation

npm install @neuctra/cms-core

or

yarn add @neuctra/cms-core

Peer Dependencies

Make sure you already have these installed:

react >= 18
react-dom >= 18

Quick Start

import React, { useState } from "react";
import { NeuctraEditor, NeuctraEditorPreview } from "@neuctra/cms-core";

const App = () => {
  const [blocks, setBlocks] = useState([]);

  return (
    <div>
      <NeuctraEditor
        blocks={blocks}
        setBlocks={setBlocks}
      />

      <NeuctraEditorPreview
        blocks={blocks}
      />
    </div>
  );
};

export default App;

Styling Setup (Tailwind CSS)

This package is built with Tailwind CSS in mind.

Add this to your global CSS:

@source "../node_modules/@neuctra/cms-core";

If you're using Tailwind v4+, this ensures all internal styles are included in your build.


Core Concept

This CMS is based on a block system.

Each content unit is stored as a block:

[
  {
    "id": "blk_1",
    "type": "heading",
    "content": "Hello World",
    "level": "h1"
  },
  {
    "id": "blk_2",
    "type": "paragraph",
    "content": "This is a paragraph block."
  }
]

Components

<NeuctraEditor />

Main editor component for creating and editing content blocks.

Props

| Prop | Type | Description | | --------- | ---------- | ---------------------- | | blocks | Block[] | Current content state | | setBlocks | function | State updater function | | className | string | Custom styles |


<NeuctraEditorPreview />

Renders a read-only preview of blocks.

Props

| Prop | Type | Description | | --------- | --------- | ----------------- | | blocks | Block[] | Content to render | | className | string | Custom styles |


Block Types (Example)

| Type | Description | | --------- | ------------------------- | | heading | Title / headings | | paragraph | Text content | | quote | Blockquotes | | code | Code blocks | | list | Ordered / unordered lists | | image | Media blocks | | table | Structured data |


Development Scripts

npm run dev       # Start development server
npm run build     # Build production package
npm run clean     # Remove dist folder

Build Output

dist/
 ├── index.es.js
 ├── index.cjs.js
 └── types/

Usage in Real Projects

Perfect for:

  • Blogging platforms
  • Documentation systems
  • Note-taking apps
  • Custom CMS dashboards
  • SaaS content editors

Roadmap

  • [ ] Drag & drop block reordering
  • [ ] Plugin system for custom blocks
  • [ ] Markdown import/export
  • [ ] AI writing assistant integration
  • [ ] Collaboration mode (multi-user editing)
  • [ ] Version history system

🤝 Contributing

Contributions are welcome!

git clone https://github.com/Taha-Asif-313/neuctra-cms-core.git
cd neuctra-cms-core
npm install
npm run dev

🐛 Issues

If you find bugs or want features:

👉 https://github.com/Taha-Asif-313/neuctra-cms-core/issues


📜 License

MIT © 2026 Neuctra


🌐 Author

Neuctra CMS Core Built by Taha Asif [email protected]


⭐ Show Your Support

If you like this project, consider giving it a ⭐ on GitHub to support development.