daytonajs-mvc 0.0.3
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/index.js +13 -0
- package/lib/application.js +5 -0
- package/lib/applicationController.js +7 -0
- package/lib/applicationDatabase.js +9 -0
- package/lib/applicationRouter.js +7 -0
- package/lib/applicationService.js +7 -0
- package/lib/rowModel.js +9 -0
- package/lib/tableModel.js +9 -0
- package/package.json +21 -0
package/index.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// index.js:
|
|
2
|
+
|
|
3
|
+
"use strict";
|
|
4
|
+
|
|
5
|
+
require("daytonajs-say");
|
|
6
|
+
|
|
7
|
+
const application = require("./lib/application.js");
|
|
8
|
+
const ApplicationController = require("./lib/applicationController.js");
|
|
9
|
+
const ApplicationDatabase = require("./lib/applicationDatabase.js");
|
|
10
|
+
const ApplicationRouter = require("./lib/applicationRouter.js");
|
|
11
|
+
const ApplicationService = require("./lib/applicationService.js");
|
|
12
|
+
const RowModel = require("./lib/rowModel.js");
|
|
13
|
+
const TableModel = require("./lib/tableModel.js");
|
package/lib/rowModel.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "daytonajs-mvc",
|
|
3
|
+
"version": "0.0.3",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"dev": "NODE_ENV=development nodemon index.js --watch .",
|
|
8
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [],
|
|
11
|
+
"author": "",
|
|
12
|
+
"license": "ISC",
|
|
13
|
+
"type": "commonjs",
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"daytonajs-say": "^0.0.1"
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"daytonajs-config": "^0.0.2",
|
|
19
|
+
"daytonajs-orm": "^0.0.1"
|
|
20
|
+
}
|
|
21
|
+
}
|