ee-core 1.2.8-beta.4 → 1.2.9-bate.2
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/LICENSE +21 -21
- package/README.md +2 -2
- package/bin/tools.js +22 -22
- package/config/config.default.js +255 -250
- package/core/index.js +12 -12
- package/core/lib/ee.js +209 -209
- package/core/lib/loader/context_loader.js +105 -105
- package/core/lib/loader/ee_loader.js +451 -451
- package/core/lib/loader/file_loader.js +262 -262
- package/core/lib/loader/mixin/config.js +138 -138
- package/core/lib/loader/mixin/controller.js +123 -123
- package/core/lib/loader/mixin/service.js +29 -29
- package/core/lib/utils/base_context_class.js +34 -34
- package/core/lib/utils/index.js +100 -100
- package/core/lib/utils/sequencify.js +59 -59
- package/core/lib/utils/timing.js +77 -77
- package/index.js +49 -49
- package/lib/appLoader.js +45 -45
- package/lib/application.js +79 -80
- package/lib/baseApp.js +118 -118
- package/lib/constant.js +28 -28
- package/lib/eeApp.js +326 -326
- package/lib/helper.js +51 -51
- package/lib/httpclient.js +136 -136
- package/lib/logger.js +46 -46
- package/lib/socket/httpServer.js +134 -102
- package/lib/socket/io.js +23 -23
- package/lib/socket/ipcServer.js +128 -128
- package/lib/socket/socketClient.js +50 -50
- package/lib/socket/socketServer.js +76 -76
- package/lib/socket/start.js +22 -22
- package/lib/storage/index.js +33 -33
- package/lib/storage/lowdbStorage.js +98 -98
- package/lib/storage/sqliteStorage.js +58 -58
- package/package.json +45 -45
- package/tools/codeCompress.js +204 -204
- package/tools/replaceDist.js +76 -76
- package/utils/common.js +90 -90
- package/utils/index.js +207 -207
- package/utils/wrap.js +37 -37
- package/resource/images/loding.gif +0 -0
- package/resource/images/tray_logo.png +0 -0
- package/resource/loading.html +0 -22
- package/resource/view_example.html +0 -22
package/resource/loading.html
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
<html>
|
|
2
|
-
<head>
|
|
3
|
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
4
|
-
<style type="text/css">
|
|
5
|
-
body{
|
|
6
|
-
margin:0px auto;
|
|
7
|
-
}
|
|
8
|
-
#picture1 {
|
|
9
|
-
position: absolute;
|
|
10
|
-
left: 50%;
|
|
11
|
-
top: 35%;
|
|
12
|
-
transform: translate(-50%, -50%);
|
|
13
|
-
}
|
|
14
|
-
</style>
|
|
15
|
-
<title></title>
|
|
16
|
-
</head>
|
|
17
|
-
<body>
|
|
18
|
-
<div id="picture1">
|
|
19
|
-
<img src="./images/loding.gif" />
|
|
20
|
-
</div>
|
|
21
|
-
</body>
|
|
22
|
-
</html>
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
<html>
|
|
2
|
-
<head>
|
|
3
|
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
4
|
-
<style type="text/css">
|
|
5
|
-
body{
|
|
6
|
-
margin:0px auto;
|
|
7
|
-
}
|
|
8
|
-
#content {
|
|
9
|
-
position: absolute;
|
|
10
|
-
left: 50%;
|
|
11
|
-
top: 35%;
|
|
12
|
-
transform: translate(-50%, -50%);
|
|
13
|
-
}
|
|
14
|
-
</style>
|
|
15
|
-
<title></title>
|
|
16
|
-
</head>
|
|
17
|
-
<body>
|
|
18
|
-
<div id="content">
|
|
19
|
-
这是一个html页面
|
|
20
|
-
</div>
|
|
21
|
-
</body>
|
|
22
|
-
</html>
|