msgbyte / tushan

Tushan: Build a admin platform for your application in five minutes.

Home Page:https://tushan.msgbyte.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

简体中文

Introduction

Tushan: Build a Backend Management Platform in Five Minutes

Official Documentation: https://tushan.msgbyte.com/

Tushan is a highly flexible, React-based, out-of-the-box frontend framework for backend management applications.

As a developer, you can quickly create a usable backend management framework as if you were calling a library.

A simple Tushan application might looks like this:

import {
  createTextField,
  createEmailField,
  createUrlField,
  jsonServerProvider,
  ListTable,
  Resource,
  Tushan,
} from 'tushan';

const dataProvider = jsonServerProvider('https://jsonplaceholder.typicode.com');

function App() {
  return (
    <Tushan
      basename="/admin"
      dataProvider={dataProvider}
    >
      <Resource
        name="users"
        label="User"
        list={
          <ListTable
            fields={[
              createTextField('id', {
                label: 'ID',
              }),
              createTextField('name', {
                label: 'Name',
                list: {
                  sort: true,
                },
              }),
              createEmailField('email', {
                label: 'Email',
              }),
              createUrlField('website', {
                label: 'Website',
              }),
            ]}
            action={{ create: true, detail: true, edit: true, delete: true }}
          />
        }
      />
    </Tushan>
  );
}

export default App;

We can determine the presentation of the data table by specifying the types of fields, and built-in functionalities for common operations such as add, delete, edit, and query are implemented to help developers quickly produce an MVP for a backend application.

Preview

The preview effects are as follows:

The API design of Tushan is greatly inspired by react-admin, and their interface protocols are fully compatible. This means that the backend interface ecosystem of react-admin can be seamlessly used by Tushan. If you're interested in a backend solution designed with material-ui, you can choose react-admin as an alternative.

Additionally, Tushan includes some common frontend dependencies such as styled-components and arco-design, which can help you build your frontend interface more quickly.

Quick Example in CodeSandbox

Visit CodeSandbox for a quick example of a version without backend.

UI Framework

The UI component library of Tushan is based on ByteDance's arco-design. You can access the official documentation of arco-design here.

All components have been exported and can be directly imported through tushan.

Scan to Visit Tushan Official Website

About

Tushan: Build a admin platform for your application in five minutes.

https://tushan.msgbyte.com/

License:MIT License


Languages

Language:TypeScript 97.2%Language:JavaScript 1.4%Language:CSS 0.7%Language:HTML 0.5%Language:MDX 0.2%