AdminJS Admin Panel Development

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Showing 1 of 1 servicesAll 2065 services
AdminJS Admin Panel Development
Medium
from 1 week to 3 months
FAQ
Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

AdminJS Admin Panel Development

AdminJS — open-source Node.js framework auto-generating admin interface based on data models. Supports TypeORM, Prisma, Mongoose, Sequelize. Written in React, highly customizable.

Installation and Basic Setup

npm install adminjs @adminjs/express express express-session
npm install @adminjs/typeorm  # or @adminjs/prisma, @adminjs/mongoose
import AdminJS from 'adminjs';
import AdminJSExpress from '@adminjs/express';
import { Database, Resource, getModelByName } from '@adminjs/typeorm';

AdminJS.registerAdapter({ Database, Resource });

const adminJs = new AdminJS({
    resources: [
        {
            resource: getModelByName('User'),
            options: {
                properties: {
                    password: { isVisible: { list: false, edit: false, filter: false, show: false } },
                    createdAt: { isVisible: { edit: false } }
                },
                actions: {
                    delete: { isAccessible: ({ currentAdmin }) => currentAdmin?.role === 'superadmin' }
                }
            }
        },
        {
            resource: getModelByName('Order'),
            options: {
                listProperties: ['id', 'customer', 'status', 'total', 'createdAt'],
                filterProperties: ['status', 'createdAt'],
                sort: { sortBy: 'createdAt', direction: 'desc' }
            }
        }
    ],
    dashboard: {
        component: AdminJS.bundle('./components/Dashboard')
    },
    branding: {
        companyName: 'My Store',
        logo: '/admin-logo.svg'
    }
});

const router = AdminJSExpress.buildAuthenticatedRouter(adminJs, {
    authenticate: async (email, password) => {
        const admin = await Admin.findOne({ email });
        if (admin && await bcrypt.compare(password, admin.passwordHash)) {
            return admin;
        }
        return null;
    },
    cookiePassword: process.env.COOKIE_SECRET
});

Custom Components

AdminJS allows replacing standard components with custom React:

// components/OrderStatusCell.tsx
import { BasePropertyProps } from 'adminjs';

const OrderStatusCell: React.FC<BasePropertyProps> = ({ record }) => {
    const status = record.params.status;
    const colors = { pending: 'orange', completed: 'green', cancelled: 'red' };

    return <span style={{ color: colors[status] }}>{status}</span>;
};

export default OrderStatusCell;

// In resource config
properties: {
    status: {
        components: { list: AdminJS.bundle('./components/OrderStatusCell') }
    }
}

Custom Actions

actions: {
    sendNotification: {
        actionType: 'record',
        icon: 'Bell',
        label: 'Notify customer',
        handler: async (request, response, context) => {
            const { record } = context;
            await NotificationService.send(record.params.customerId, 'order_ready');
            return {
                record: record.toJSON(),
                notice: { message: 'Notification sent', type: 'success' }
            };
        }
    }
}

File Upload via @adminjs/upload

npm install @adminjs/upload
import uploadFeature from '@adminjs/upload';
import { s3Client } from './s3-client';

{
    resource: getModelByName('Product'),
    features: [
        uploadFeature({
            provider: { aws: { bucket: 'my-bucket', s3Client } },
            properties: {
                file:          'imageFile',
                filePath:      'imageUrl',
                filename:      'imageName',
                mimeType:      'imageMimeType'
            },
            uploadPath: (record, filename) => `products/${record.id()}/${filename}`
        })
    ]
}

Roles and Permissions

const canModifyOrders = ({ currentAdmin }: { currentAdmin: Admin }) =>
    ['superadmin', 'manager'].includes(currentAdmin?.role);

{
    resource: getModelByName('Order'),
    options: {
        actions: {
            edit:   { isAccessible: canModifyOrders },
            delete: { isAccessible: ({ currentAdmin }) => currentAdmin?.role === 'superadmin' }
        }
    }
}

AdminJS Limitations

  • Complex custom workflows require lots of code — loses benefit over custom panel
  • Performance on large volumes (100k+ records) requires manual query optimization
  • Limited mobile display options

Development timeline: 2–3 weeks for panel with custom components, file uploads, and configured permissions.