UNPKG

1.93 kBMarkdownView Raw
1# Mongoose-Admin
2
3 [Mongoose-Admin](http://www.github.com/marccampbell/mongo-admin) is a plug in admin tool for [mongoose](http://learnboost.github.com/mongoose) for [node.js](http://nodejs.org).
4
5## Installation
6
7```bash
8$ npm install mongoose-admin
9```
10
11## Known Issues
12
13 - nested objects which contain nested objects cannot be created on new
14 documents
15 - no pagination of documents when listing
16
17
18## Features
19
20 - automatic templates for
21 - creating entities
22 - editing entities
23 - deleting entities
24 - listens on configurable port
25
26## Running Tests
27
28Install development dependencies:
29
30```bash
31$ npm install
32```
33
34Then:
35
36```bash
37$ test/run
38```
39
40Actively tested with node:
41
42 - 0.4.9
43
44## Authors
45
46 * Marc Campbell
47
48## License
49
50(The MIT License)
51
52Copyright (c) 2011 Marc Campbell <marc.e.campbell@gmail.com>
53
54Permission is hereby granted, free of charge, to any person obtaining
55a copy of this software and associated documentation files (the
56'Software'), to deal in the Software without restriction, including
57without limitation the rights to use, copy, modify, merge, publish,
58distribute, sublicense, and/or sell copies of the Software, and to
59permit persons to whom the Software is furnished to do so, subject to
60the following conditions:
61
62The above copyright notice and this permission notice shall be
63included in all copies or substantial portions of the Software.
64
65THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
66EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
67MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
68IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
69CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
70TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
71SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
72