Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/heapwolf/node-admin
DEPRECATED
https://github.com/heapwolf/node-admin
Last synced: 25 days ago
JSON representation
DEPRECATED
- Host: GitHub
- URL: https://github.com/heapwolf/node-admin
- Owner: heapwolf
- License: mit
- Created: 2013-06-19T17:18:28.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-06-20T18:06:53.000Z (over 11 years ago)
- Last Synced: 2024-10-03T08:33:18.751Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 547 KB
- Stars: 11
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SYNOPSIS
Build simple modular admin interfaces for node# DESCRIPTION
Out of the box it does the following things.- Manage users and permissions
- Opt-in secure login over HTTP or HTTPS
- Automaticly reconnect the client to data sources
- Provide a simple RPC and REST API for creating modules ([`see this example`][0])# USAGE
Create an executable script that can start the server.```
#!/usr/bin/env node
require('admin').Server(require('optimist').argv)
```Install some interface modules into your project
```
$npm install admin-template
```[0]:https://github.com/hij1nx/admin-template