https://github.com/getsimpleadmin/simpleadmin-nodejs
Create admin dashboards for Web / Mobile / API applications
https://github.com/getsimpleadmin/simpleadmin-nodejs
nodejs webdevelopment webservice
Last synced: 10 months ago
JSON representation
Create admin dashboards for Web / Mobile / API applications
- Host: GitHub
- URL: https://github.com/getsimpleadmin/simpleadmin-nodejs
- Owner: getsimpleadmin
- Created: 2019-01-29T10:58:53.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-09T22:23:03.000Z (almost 3 years ago)
- Last Synced: 2025-01-06T14:23:23.592Z (12 months ago)
- Topics: nodejs, webdevelopment, webservice
- Language: JavaScript
- Homepage: https://getsimpleadmin.com
- Size: 129 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![NPM Version][npm-image]][npm-url]
[![NPM Downloads][downloads-image]][downloads-url]
[](https://codeclimate.com/github/getsimpleadmin/simpleadmin-nodejs/maintainability)
# [SimpleAdmin](http://getsimpleadmin.com)
SimpleAdmin provides builder for administrative dashboards, it's fit for Web / Mobile / API. Cloud or your own servers, depends on your choice and requirements.
All common admin dashboard tasks like content create / update / delete operations, charts, invite colleagues.
[Example Application][demo]
## Installation

Install SimpleAdmin to your application:
```javascript
npm install simpleadmin --save
```
## Configuration
Call method `mount` to mount simpleadmin built-in routes:
```javascript
// server.js
const simpleadmin = require('simpleadmin');
let mountAt = '/simpleadmin';
simpleadmin.mount(serverInstance, databaseConnection, mountAt);
```
Set environment variable to protect your data
```javascript
process.env.SIMPLE_ADMIN_SECRET_KEY = 'YOU_SECRET_KEY'
```
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/getsimpleadmin/simpleadmin-nodejs.
## License
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
[demo]: https://getsimpleadmin.com/demo/admin/customer/resources
[npm-image]: https://img.shields.io/npm/v/simpleadmin.svg
[npm-url]: https://npmjs.org/package/simpleadmin
[downloads-image]: https://img.shields.io/npm/dm/simpleadmin.svg
[downloads-url]: https://npmjs.org/package/simpleadmin