waibu-mdb 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -0
- package/package.json +33 -0
- package/plugin/.alias +1 -0
- package/plugin/config.json +3 -0
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# waibu-mdb
|
|
2
|
+
|
|
3
|
+
Plugin name: **waibuMdb**, alias: **wmdb**
|
|
4
|
+
|
|
5
|
+
 
|
|
6
|
+
|
|
7
|
+
> <br />**Attention**: I do NOT accept any pull request at the moment, thanks!<br /><br />
|
|
8
|
+
|
|
9
|
+
MDB support for [Waibu MPA](https://github.com/ardhi/waibu-mpa)
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
Goto your ```<bajo-base-dir>``` and type:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
$ npm install waibu-mdb
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Now open your ```<bajo-data-dir>/config/.plugins``` and put ```waibu-mdb``` in it.
|
|
20
|
+
|
|
21
|
+
## License
|
|
22
|
+
|
|
23
|
+
[MIT](LICENSE)
|
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "waibu-mdb",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "MDB suport for Waibu MPA",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
+
},
|
|
9
|
+
"type": "module",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/ardhi/waibu-mdb.git"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"mdb",
|
|
16
|
+
"waibu",
|
|
17
|
+
"web",
|
|
18
|
+
"webserver",
|
|
19
|
+
"bajo",
|
|
20
|
+
"framework",
|
|
21
|
+
"fastify",
|
|
22
|
+
"modular"
|
|
23
|
+
],
|
|
24
|
+
"author": "Ardhi Lukianto <ardhi@lukianto.com>",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"bugs": {
|
|
27
|
+
"url": "https://github.com/ardhi/waibu-mdb/issues"
|
|
28
|
+
},
|
|
29
|
+
"homepage": "https://github.com/ardhi/waibu-mdb#readme",
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"mdb-ui-kit": "^8.0.0"
|
|
32
|
+
}
|
|
33
|
+
}
|
package/plugin/.alias
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
wmdb
|