JSPM

  • Created
  • Published
  • Downloads 36
  • Score
    100M100P100Q65502F
  • License MIT

Library for provide Admin UI

Package Exports

  • @admin-interface/express

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@admin-interface/express) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Admin Interface

Admin Interface it is library for provide Admin UI on base Sequelize and Express.

Also check out our demo project

Installation

$ npm install --save @admin-interface/core @admin-interface/express

Connect to Your project

const app            = require('express')();
const AdminInterface = require('@admin-interface/express');

const adminInterface = new AdminInterface();
adminInterface.setConfigFile(__dirname, 'admin-interface.yaml');

// Your API ...

// Mount Admin Interface
app.use('/admin', adminInterface.middleware());

app.listen(3000, () => console.log('run server on 3000 port'));

Screenshots

a a a

As a basis UI is taken AdminBSB - Material Design

Looking for docs?

License

Admin Interface is an open source project that is licensed under the MIT license.