Socket
Book a DemoInstallSign in
Socket

@vyuh/react-feature-system

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vyuh/react-feature-system

System feature package for Vyuh React framework

npmnpm
Version
0.1.0
Version published
Weekly downloads
43
-66.41%
Maintainers
1
Weekly downloads
 
Created
Source

Vyuh Feature System

npm version

The system feature package for Vyuh React framework, providing essential content types, layouts, and utilities for building CMS-driven React applications.

Features

  • Content Types: Routes, Cards, Groups, etc.
  • Layouts: Default and customizable layouts for content types
  • Utilities: Helper functions for content management

Installation

npm install @vyuh/react-feature-system
# or
yarn add @vyuh/react-feature-system

Usage

Register the Feature

import { createVyuhApp } from '@vyuh/core';
import { feature as systemFeature } from '@vyuh/react-feature-system';

const app = createVyuhApp({
  features: [
    systemFeature,
    // other features...
  ]
});

Use Route Components

import { Route } from '@vyuh/react-feature-system';

// Create a route from JSON data
const route = Route.fromJson({
  _type: 'vyuh.route',
  path: '/home',
  title: 'Home Page',
  regions: [
    {
      title: 'Main Content',
      items: [
        // content items...
      ]
    }
  ]
});

Documentation

For more detailed documentation, visit docs.vyuh.tech.

License

MIT © Vyuh Tech

Keywords

vyuh

FAQs

Package last updated on 24 Mar 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