mm_os 3.3.1 → 4.0.1

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.
Files changed (380) hide show
  1. package/LICENSE +21 -201
  2. package/README.md +498 -99
  3. package/README_EN.md +505 -0
  4. package/adapter/adapter.js +431 -0
  5. package/adapter/custom_persistence.js +660 -0
  6. package/adapter/mqtt.js +273 -0
  7. package/adapter/socket.js +113 -0
  8. package/adapter/web.js +67 -0
  9. package/adapter/websocket.js +146 -0
  10. package/com/api/com.json +5 -0
  11. package/{core/com → com}/api/config.tpl.json +8 -8
  12. package/com/api/drive.js +708 -0
  13. package/com/api/index.js +198 -0
  14. package/com/api/oauth.js +200 -0
  15. package/com/api/script.tpl.js +32 -0
  16. package/com/cmd/README.md +11 -0
  17. package/com/cmd/com.json +5 -0
  18. package/com/cmd/config.tpl.json +122 -0
  19. package/com/cmd/drive.js +1548 -0
  20. package/com/cmd/index.js +1066 -0
  21. package/com/cmd/msg.json +48 -0
  22. package/com/cmd/nlp.js +525 -0
  23. package/com/cmd/script.tpl.js +32 -0
  24. package/com/db/com.json +5 -0
  25. package/com/db/drive.js +1999 -0
  26. package/com/db/index.js +242 -0
  27. package/{core/com → com}/event/README.md +4 -4
  28. package/com/event/com.json +5 -0
  29. package/{core/com → com}/event/config.tpl.json +18 -18
  30. package/com/event/drive.js +59 -0
  31. package/com/event/index.js +409 -0
  32. package/com/event/script.tpl.js +23 -0
  33. package/com/mqtt/com.json +5 -0
  34. package/{core/com → com}/mqtt/config.tpl.json +3 -5
  35. package/com/mqtt/drive.js +676 -0
  36. package/com/mqtt/index.js +822 -0
  37. package/com/mqtt/mm_mqtt.js +425 -0
  38. package/com/mqtt/script.tpl.js +723 -0
  39. package/com/nav/com.json +5 -0
  40. package/com/nav/config.tpl.json +84 -0
  41. package/com/nav/drive.js +702 -0
  42. package/com/nav/index.js +231 -0
  43. package/{core/com → com}/nav/tpl/admin_pc/page_config.vue +280 -280
  44. package/{core/com → com}/nav/tpl/admin_pc/page_config_form.vue +194 -194
  45. package/com/nav/tpl/admin_pc/page_form.vue +180 -0
  46. package/com/nav/tpl/admin_pc/page_view.vue +124 -0
  47. package/com/nav/tpl/dev_pc/page_default.vue +247 -0
  48. package/com/nav/tpl/dev_pc/page_type.vue +313 -0
  49. package/com/nav/tpl/home_pc/page_default.vue +234 -0
  50. package/com/nav/tpl/home_pc/page_form.vue +137 -0
  51. package/com/nav/tpl/home_pc/page_list.vue +234 -0
  52. package/com/nav/tpl/home_pc/page_nav.vue +221 -0
  53. package/com/nav/tpl/home_pc/page_type.vue +234 -0
  54. package/com/nav/tpl/home_pc/page_view.vue +125 -0
  55. package/com/nav/tpl/home_phone/page_channel.vue +234 -0
  56. package/com/nav/tpl/home_phone/page_default.vue +234 -0
  57. package/com/nav/tpl/home_phone/page_form.vue +137 -0
  58. package/com/nav/tpl/home_phone/page_nav.vue +237 -0
  59. package/com/nav/tpl/home_phone/page_type.vue +234 -0
  60. package/com/nav/tpl/home_phone/page_view.vue +125 -0
  61. package/com/nav/viewmodel.js +446 -0
  62. package/com/param/com.json +5 -0
  63. package/{core/com → com}/param/config.tpl.json +7 -1
  64. package/com/param/drive.js +502 -0
  65. package/com/param/index.js +155 -0
  66. package/com/param/script.tpl.js +12 -0
  67. package/com/pendant/com.json +5 -0
  68. package/{core/com/component → com/pendant}/config.tpl.json +15 -13
  69. package/com/pendant/drive.js +204 -0
  70. package/com/pendant/index.js +441 -0
  71. package/com/pendant/pendant.html +16 -0
  72. package/com/pendant/script.tpl.js +18 -0
  73. package/com/socket/com.json +5 -0
  74. package/com/socket/config.tpl.json +12 -0
  75. package/com/socket/drive.js +651 -0
  76. package/com/socket/index.js +351 -0
  77. package/com/socket/script.tpl.js +41 -0
  78. package/com/sql/com.json +5 -0
  79. package/{core/com → com}/sql/config.tpl.json +13 -9
  80. package/com/sql/drive.js +1259 -0
  81. package/com/sql/index.js +150 -0
  82. package/com/sql/script.tpl.js +47 -0
  83. package/com/static/com.json +5 -0
  84. package/{core/com → com}/static/config.tpl.json +10 -6
  85. package/com/static/drive.js +194 -0
  86. package/com/static/index.js +226 -0
  87. package/com/static/script.tpl.js +28 -0
  88. package/com/task/com.json +5 -0
  89. package/{core/com → com}/task/config.tpl.json +4 -6
  90. package/com/task/drive.js +405 -0
  91. package/com/task/index.js +148 -0
  92. package/com/task/script.tpl.js +37 -0
  93. package/com/template/com.json +5 -0
  94. package/com/template/config.tpl.json +16 -0
  95. package/com/template/drive.js +80 -0
  96. package/com/template/index.js +141 -0
  97. package/com.js +156 -0
  98. package/common/README.md +2 -0
  99. package/common/handler/msg/handler.json +22 -0
  100. package/common/handler/msg/index.js +23 -0
  101. package/common/handler/player/handler.json +22 -0
  102. package/common/handler/player/index.js +287 -0
  103. package/common/handler/user/handler.json +22 -0
  104. package/common/handler/user/index.js +23 -0
  105. package/common/middleware/web_after/index.js +29 -0
  106. package/common/middleware/web_after/middleware.json +9 -0
  107. package/common/middleware/web_base/index.js +113 -0
  108. package/common/middleware/web_base/middleware.json +19 -0
  109. package/common/middleware/web_before/index.js +33 -0
  110. package/common/middleware/web_before/middleware.json +9 -0
  111. package/common/middleware/web_cors/index.js +87 -0
  112. package/common/middleware/web_cors/middleware.json +24 -0
  113. package/common/middleware/web_error/index.js +119 -0
  114. package/common/middleware/web_error/middleware.json +18 -0
  115. package/common/middleware/web_ip/index.js +15 -0
  116. package/common/middleware/web_ip/middleware.json +14 -0
  117. package/common/middleware/web_logger/index.js +156 -0
  118. package/common/middleware/web_logger/middleware.json +14 -0
  119. package/common/middleware/web_main/index.js +24 -0
  120. package/common/middleware/web_main/middleware.json +9 -0
  121. package/common/middleware/web_static/index.js +73 -0
  122. package/common/middleware/web_static/middleware.json +54 -0
  123. package/common/middleware/web_waf/index.js +385 -0
  124. package/common/middleware/web_waf/middleware.json +13 -0
  125. package/common/model/msg/index.js +88 -0
  126. package/common/model/msg/model.json +401 -0
  127. package/common/model/player/index.js +63 -0
  128. package/common/model/player/model.json +185 -0
  129. package/common/model/user/index.js +11 -0
  130. package/common/model/user/model.json +219 -0
  131. package/core/app/config.tpl.json +67 -0
  132. package/core/app/index.js +632 -0
  133. package/core/app/script.tpl.js +52 -0
  134. package/core/channel/index.js +899 -0
  135. package/core/channel/matcher.js +585 -0
  136. package/core/com/config.tpl.json +16 -0
  137. package/core/com/index.js +74 -0
  138. package/core/com/script.tpl.js +5 -0
  139. package/core/component/component.js +42 -0
  140. package/core/component/config.tpl.json +63 -0
  141. package/core/component/index.js +273 -0
  142. package/core/component/script.tpl.js +19 -0
  143. package/core/controller/config.tpl.json +14 -0
  144. package/core/controller/index.js +373 -0
  145. package/core/controller/script.tpl.js +27 -0
  146. package/core/factory/config.tpl.json +14 -0
  147. package/core/factory/entity.js +275 -0
  148. package/core/factory/index.js +241 -0
  149. package/core/factory/script.tpl.js +16 -0
  150. package/core/game/bat/index.js +137 -0
  151. package/core/game/bat/world.js +622 -0
  152. package/core/game/config.tpl.json +16 -0
  153. package/core/game/entity_admin.js +230 -0
  154. package/core/game/index.js +186 -0
  155. package/core/handler/config.tpl.json +22 -0
  156. package/core/handler/index.js +181 -0
  157. package/core/handler/script.tpl.js +23 -0
  158. package/core/logic/config.tpl.json +14 -0
  159. package/core/logic/index.js +59 -0
  160. package/core/logic/script.tpl.js +19 -0
  161. package/core/middleware/config.tpl.json +16 -0
  162. package/core/middleware/index.js +125 -0
  163. package/core/middleware/script.tpl.js +37 -0
  164. package/core/mod/config.tpl.json +22 -0
  165. package/core/mod/index.js +130 -0
  166. package/core/mod/script.tpl.js +34 -0
  167. package/core/model/config.tpl.json +219 -0
  168. package/core/model/index.js +272 -0
  169. package/core/model/model.js +27 -0
  170. package/core/model/script.tpl.js +20 -0
  171. package/core/notifier/config.tpl.json +14 -0
  172. package/core/notifier/index.js +77 -0
  173. package/core/notifier/script.tpl.js +20 -0
  174. package/core/plugin/config.tpl.json +24 -0
  175. package/core/plugin/index.js +232 -0
  176. package/core/plugin/script.tpl.js +51 -0
  177. package/core/pusher/config.tpl.json +14 -0
  178. package/core/pusher/index.js +161 -0
  179. package/core/pusher/script.tpl.js +20 -0
  180. package/core/room/bat/index.js +170 -0
  181. package/core/room/bat/room.js +524 -0
  182. package/core/room/config.tpl.json +20 -0
  183. package/core/room/index.js +249 -0
  184. package/core/room/room.js +61 -0
  185. package/core/scene/config.tpl.json +14 -0
  186. package/core/scene/index.js +466 -0
  187. package/core/scene/loop.js +1255 -0
  188. package/core/scene/map.js +28 -0
  189. package/core/scene/script.tpl.js +22 -0
  190. package/core/sender/config.tpl.json +14 -0
  191. package/core/sender/index.js +79 -0
  192. package/core/sender/script.tpl.js +20 -0
  193. package/core/service/config.tpl.json +14 -0
  194. package/core/service/index.js +100 -0
  195. package/core/service/script.tpl.js +25 -0
  196. package/core/store/config.tpl.json +26 -0
  197. package/core/store/index.js +1755 -0
  198. package/core/store/script.tpl.js +22 -0
  199. package/core/store/sql.js +1464 -0
  200. package/core/system/config.tpl.json +18 -0
  201. package/core/system/index.js +312 -0
  202. package/core/system/script.tpl.js +77 -0
  203. package/core/view/config.tpl.json +14 -0
  204. package/core/view/index.js +91 -0
  205. package/core/view/script.tpl.js +20 -0
  206. package/core/zone/bat/index.js +725 -0
  207. package/core/zone/config.tpl.json +54 -0
  208. package/core/zone/index.js +614 -0
  209. package/core/zone/script.tpl.js +10 -0
  210. package/core/zone/zone_bat.js +136 -0
  211. package/core//345/237/272/347/261/273/346/250/241/345/235/227/346/270/205/345/215/225.md +24 -0
  212. package/index.js +17 -333
  213. package/os.js +57 -0
  214. package/package.json +65 -55
  215. package/server.js +598 -0
  216. package/README.en.md +0 -36
  217. package/conf.json +0 -3
  218. package/core/base/mqtt/index.js +0 -1110
  219. package/core/base/mqtt/lib.js +0 -40
  220. package/core/base/web/index.js +0 -245
  221. package/core/com/api/com.json +0 -4
  222. package/core/com/api/drive.js +0 -668
  223. package/core/com/api/index.js +0 -108
  224. package/core/com/api/oauth.js +0 -158
  225. package/core/com/api/script.js +0 -32
  226. package/core/com/app/README.md +0 -3
  227. package/core/com/app/com.json +0 -4
  228. package/core/com/app/config.tpl.json +0 -16
  229. package/core/com/app/drive.js +0 -309
  230. package/core/com/app/index.js +0 -211
  231. package/core/com/app/script.js +0 -155
  232. package/core/com/cmd/com.json +0 -4
  233. package/core/com/cmd/config.tpl.json +0 -66
  234. package/core/com/cmd/drive.js +0 -513
  235. package/core/com/cmd/index.js +0 -354
  236. package/core/com/cmd/old/5w2h.js +0 -54
  237. package/core/com/cmd/old/drive.js +0 -423
  238. package/core/com/cmd/script.js +0 -11
  239. package/core/com/component/README.md +0 -3
  240. package/core/com/component/com.json +0 -4
  241. package/core/com/component/component.html +0 -16
  242. package/core/com/component/drive.js +0 -197
  243. package/core/com/component/index.js +0 -312
  244. package/core/com/component/script.js +0 -18
  245. package/core/com/db/com.json +0 -4
  246. package/core/com/db/drive.js +0 -1160
  247. package/core/com/db/index.js +0 -176
  248. package/core/com/event/com.json +0 -4
  249. package/core/com/event/drive.js +0 -133
  250. package/core/com/event/index.js +0 -345
  251. package/core/com/event/script.js +0 -26
  252. package/core/com/eventer/com.js +0 -477
  253. package/core/com/eventer/com.json +0 -4
  254. package/core/com/middleware/com.js +0 -154
  255. package/core/com/middleware/com.json +0 -4
  256. package/core/com/middleware/config.tpl.json +0 -8
  257. package/core/com/middleware/script.js +0 -9
  258. package/core/com/mqtt/com.json +0 -4
  259. package/core/com/mqtt/drive.js +0 -600
  260. package/core/com/mqtt/index.js +0 -572
  261. package/core/com/mqtt/mm_mqtt.js +0 -330
  262. package/core/com/mqtt/script.js +0 -604
  263. package/core/com/msg/com.js +0 -296
  264. package/core/com/msg/com.json +0 -4
  265. package/core/com/nav/com.json +0 -4
  266. package/core/com/nav/config.tpl.json +0 -75
  267. package/core/com/nav/drive.js +0 -549
  268. package/core/com/nav/index.js +0 -182
  269. package/core/com/nav/tpl/admin_pc/page_form.vue +0 -180
  270. package/core/com/nav/tpl/admin_pc/page_view.vue +0 -124
  271. package/core/com/nav/tpl/dev_pc/page_default.vue +0 -247
  272. package/core/com/nav/tpl/dev_pc/page_type.vue +0 -313
  273. package/core/com/nav/tpl/home_pc/page_default.vue +0 -234
  274. package/core/com/nav/tpl/home_pc/page_form.vue +0 -137
  275. package/core/com/nav/tpl/home_pc/page_list.vue +0 -234
  276. package/core/com/nav/tpl/home_pc/page_nav.vue +0 -221
  277. package/core/com/nav/tpl/home_pc/page_type.vue +0 -234
  278. package/core/com/nav/tpl/home_pc/page_view.vue +0 -125
  279. package/core/com/nav/tpl/home_phone/page_channel.vue +0 -234
  280. package/core/com/nav/tpl/home_phone/page_default.vue +0 -234
  281. package/core/com/nav/tpl/home_phone/page_form.vue +0 -137
  282. package/core/com/nav/tpl/home_phone/page_nav.vue +0 -237
  283. package/core/com/nav/tpl/home_phone/page_type.vue +0 -234
  284. package/core/com/nav/tpl/home_phone/page_view.vue +0 -125
  285. package/core/com/nav/viewmodel.js +0 -296
  286. package/core/com/param/drive.js +0 -366
  287. package/core/com/param/index.js +0 -80
  288. package/core/com/param/script.js +0 -12
  289. package/core/com/param/test.js +0 -98
  290. package/core/com/plugin/README.md +0 -3
  291. package/core/com/plugin/com.json +0 -4
  292. package/core/com/plugin/config.tpl.json +0 -26
  293. package/core/com/plugin/drive.js +0 -536
  294. package/core/com/plugin/index.js +0 -259
  295. package/core/com/plugin/script.js +0 -213
  296. package/core/com/rpc/com.json +0 -4
  297. package/core/com/rpc/drive.js +0 -160
  298. package/core/com/rpc/index.js +0 -87
  299. package/core/com/rpc/rpc.js +0 -118
  300. package/core/com/socket/com.json +0 -4
  301. package/core/com/socket/config.tpl.json +0 -14
  302. package/core/com/socket/drive.js +0 -403
  303. package/core/com/socket/index.js +0 -62
  304. package/core/com/socket/script.js +0 -42
  305. package/core/com/sql/drive.js +0 -1087
  306. package/core/com/sql/index.js +0 -83
  307. package/core/com/sql/script.js +0 -48
  308. package/core/com/static/com.json +0 -4
  309. package/core/com/static/drive.js +0 -220
  310. package/core/com/static/index.js +0 -149
  311. package/core/com/static/script.js +0 -28
  312. package/core/com/task/com.json +0 -4
  313. package/core/com/task/drive.js +0 -403
  314. package/core/com/task/index.js +0 -110
  315. package/core/com/task/script.js +0 -37
  316. package/core/com/timer/com.js +0 -217
  317. package/core/com/timer/com.json +0 -4
  318. package/core/com/tpl/com.js +0 -19
  319. package/core/com/tpl/com.json +0 -4
  320. package/lib/actions.js +0 -50
  321. package/lib/base.js +0 -361
  322. package/lib/com.js +0 -29
  323. package/lib/ref.js +0 -121
  324. package/middleware/cors/index.js +0 -119
  325. package/middleware/cors/middleware.json +0 -20
  326. package/middleware/csrf/index.js +0 -202
  327. package/middleware/csrf/middleware.json +0 -24
  328. package/middleware/ip_firewall/index.js +0 -476
  329. package/middleware/ip_firewall/middleware.json +0 -109
  330. package/middleware/mqtt_base/index.js +0 -10
  331. package/middleware/mqtt_base/middleware.json +0 -11
  332. package/middleware/security_audit/index.js +0 -543
  333. package/middleware/security_audit/middleware.json +0 -48
  334. package/middleware/waf/index.js +0 -343
  335. package/middleware/waf/middleware.json +0 -10
  336. package/middleware/waf_ddos/index.js +0 -520
  337. package/middleware/waf_ddos/middleware.json +0 -38
  338. package/middleware/waf_xss/index.js +0 -269
  339. package/middleware/waf_xss/middleware.json +0 -18
  340. package/middleware/web_after/index.js +0 -33
  341. package/middleware/web_after/middleware.json +0 -10
  342. package/middleware/web_base/index.js +0 -90
  343. package/middleware/web_base/middleware.json +0 -10
  344. package/middleware/web_before/index.js +0 -27
  345. package/middleware/web_before/middleware.json +0 -10
  346. package/middleware/web_check/index.js +0 -28
  347. package/middleware/web_check/middleware.json +0 -10
  348. package/middleware/web_main/index.js +0 -28
  349. package/middleware/web_main/middleware.json +0 -10
  350. package/middleware/web_proxy/index.js +0 -37
  351. package/middleware/web_proxy/middleware.json +0 -10
  352. package/middleware/web_render/index.js +0 -87
  353. package/middleware/web_render/middleware.json +0 -10
  354. package/middleware/web_socket/index.js +0 -34
  355. package/middleware/web_socket/middleware.json +0 -10
  356. package/middleware/web_static/index.js +0 -115
  357. package/middleware/web_static/middleware.json +0 -10
  358. /package/{core/com → com}/api/README.md +0 -0
  359. /package/{core/com → com}/db/README.md +0 -0
  360. /package/{core/com → com}/mqtt/README.md +0 -0
  361. /package/{core/com → com}/nav/README.md +0 -0
  362. /package/{core/com → com}/nav/tpl/admin_pc/page_channel.vue +0 -0
  363. /package/{core/com → com}/nav/tpl/admin_pc/page_default.vue +0 -0
  364. /package/{core/com → com}/nav/tpl/admin_pc/page_lang.vue +0 -0
  365. /package/{core/com → com}/nav/tpl/admin_pc/page_nav.vue +0 -0
  366. /package/{core/com → com}/nav/tpl/admin_pc/page_table.vue +0 -0
  367. /package/{core/com → com}/nav/tpl/admin_pc/page_type.vue +0 -0
  368. /package/{core/com → com}/nav/tpl/dev_pc/page_channel.vue +0 -0
  369. /package/{core/com → com}/nav/tpl/dev_pc/page_config.vue +0 -0
  370. /package/{core/com → com}/nav/tpl/dev_pc/page_form.vue +0 -0
  371. /package/{core/com → com}/nav/tpl/dev_pc/page_nav.vue +0 -0
  372. /package/{core/com → com}/nav/tpl/dev_pc/page_table.vue +0 -0
  373. /package/{core/com → com}/nav/tpl/home_pc/page_channel.vue +0 -0
  374. /package/{core/com → com}/nav/tpl/home_phone/page_list.vue +0 -0
  375. /package/{core/com → com}/param/README.md +0 -0
  376. /package/{core/com/cmd → com/pendant}/README.md +0 -0
  377. /package/{core/com → com}/socket/README.md +0 -0
  378. /package/{core/com → com}/sql/README.md +0 -0
  379. /package/{core/com → com}/static/README.md +0 -0
  380. /package/{core/com → com}/task/README.md +0 -0
package/README_EN.md ADDED
@@ -0,0 +1,505 @@
1
+ # MM_OS Server Architecture
2
+
3
+ [![npm version](https://badge.fury.io/js/mm_os.svg)](https://badge.fury.io/js/mm_os)
4
+ [![npm downloads](https://img.shields.io/npm/dm/mm_os.svg)](https://www.npmjs.com/package/mm_os)
5
+ [![License](https://img.shields.io/npm/l/mm_os.svg)](https://gitee.com/qiuwenwu91/mm_os/blob/master/LICENSE)
6
+
7
+ ## Project Introduction
8
+
9
+ MM_OS is a lightweight server architecture that provides a complete server development framework, including support for multiple communication protocols such as Web, WebSocket, MQTT, Socket, as well as rich components and modules.
10
+
11
+ **Use Cases:**
12
+ - **Website Development**: Quickly build enterprise websites, e-commerce platforms, content management systems
13
+ - **Mini Programs**: Backend services for WeChat Mini Programs, Alipay Mini Programs, etc.
14
+ - **AI Applications**: AI API services, intelligent assistants, machine learning inference services
15
+ - **IoT/AIoT**: IoT device management, sensor data collection, smart hardware control
16
+ - **Game Servers**: Small-to-medium game servers, real-time battle games, game backend management
17
+
18
+ Supports **AI, GAME, IOT, AIOT, Games, Internet of Things, Mini Programs, Website Development** and other application scenarios.
19
+
20
+ ## Core Features
21
+
22
+ - **Multi-protocol support**: Web, WebSocket, MQTT, Socket
23
+ - **Modular design**: Application, Module, Middleware, Notifier, Sender, Pusher
24
+ - **Infrastructure**: Database, Cache, Log, File Management
25
+ - **Event-driven**: Asynchronous processing based on event bus
26
+ - **Plugin system**: Support for function extension
27
+
28
+ ## Design Philosophy: Configuration and Logic Separation
29
+
30
+ The core design principle of MM_OS framework is **separation of configuration and logic**. Both `core` modules and `com` components follow a unified structure:
31
+
32
+ ### Module Composition
33
+
34
+ Each module consists of the following files:
35
+
36
+ | File Type | File Name | Purpose |
37
+ |-----------|-----------|---------|
38
+ | **Configuration** | `config.tpl.json` / `com.json` | Declarative definition of module configuration and metadata |
39
+ | **Logic** | `index.js` / `script.tpl.js` | Implementation of business logic and functionality |
40
+ | **Driver** | `drive.js` (optional) | Protocol driver and adapter logic |
41
+
42
+ ### Design Advantages
43
+
44
+ **1. Declarative Configuration**
45
+ - JSON files define module metadata and configuration declaratively
46
+ - Module registration and parameter configuration can be completed without writing code
47
+ - Easy to manage and configure through visual tools
48
+
49
+ **2. Logic and Configuration Decoupling**
50
+ - Configuration changes do not require code modification, reducing maintenance costs
51
+ - The same business logic can be reused with different configurations
52
+ - Configuration files can be independently version-managed and deployed
53
+
54
+ **3. Automation Capabilities**
55
+ - Framework can automatically scan JSON configurations for module registration
56
+ - Automatically generate documentation and configuration forms
57
+ - Automatically perform parameter validation, reducing repetitive code
58
+
59
+ **4. Hot Update Support**
60
+ - Configuration files can be hot-updated without restarting the service
61
+ - Supports dynamic addition/modification of module configurations
62
+
63
+ **5. Team Collaboration Optimization**
64
+ - Configuration personnel and developers can work in parallel
65
+ - Non-developers can also participate in module configuration
66
+ - Unified configuration format reduces communication costs
67
+
68
+ ### Module Types
69
+
70
+ **core modules**: Framework base modules including app, controller, model, logic, plugin, service, view, middleware, etc.
71
+
72
+ **com components**: Reusable common components including sql, cache, api, event, task, static, template, MQTT, Socket, etc.
73
+
74
+ ## Quick Start
75
+
76
+ ### Installation
77
+
78
+ ```bash
79
+ npm install mm_os
80
+ ```
81
+
82
+ ### Basic Usage
83
+
84
+ ```javascript
85
+ const { MM_os } = require('mm_os');
86
+
87
+ // Set runtime path
88
+ $.run_path = __dirname;
89
+
90
+ // Create server instance
91
+ const server = new MM_os({
92
+ web: {
93
+ host: '0.0.0.0',
94
+ port: 8000,
95
+ socket: true
96
+ },
97
+ mysql: {
98
+ host: '127.0.0.1',
99
+ port: 3306,
100
+ user: 'root',
101
+ password: '123456',
102
+ database: 'test'
103
+ },
104
+ cache: {
105
+ way: 'memory'
106
+ }
107
+ });
108
+
109
+ // Start server
110
+ async function startServer() {
111
+ await server.init();
112
+ await server.start();
113
+ console.log('Server started successfully');
114
+ }
115
+
116
+ startServer();
117
+ ```
118
+
119
+ ## Project Directory Structure
120
+
121
+ Projects developed with MM_OS framework follow a standardized directory structure:
122
+
123
+ ```
124
+ ├── app/ # Application directory containing multiple apps
125
+ │ ├── app_name/ # Application name
126
+ │ │ ├── event_api/ # Event API directory
127
+ │ │ │ ├── web/ # Web route handling
128
+ │ │ │ │ ├── event.json # Event configuration
129
+ │ │ │ │ └── main.js # Entry file
130
+ │ │ │ ├── api/ # API route
131
+ │ │ │ ├── client/ # Client API route
132
+ │ │ │ └── manage/ # Management backend route
133
+ │ │ ├── plugin/ # Plugin directory
134
+ │ │ │ ├── main/ # Main plugins (business logic)
135
+ │ │ │ │ └── api_{app}_{channel}/{api_name}/
136
+ │ │ │ │ ├── api.json # API configuration
137
+ │ │ │ │ ├── param.json # Parameter validation config
138
+ │ │ │ │ └── index.js # API implementation
139
+ │ │ │ └── server/ # Server plugins (data management)
140
+ │ │ ├── pendant/ # Pendant component directory
141
+ │ │ ├── static/ # Static resources
142
+ │ │ ├── app.json # Application configuration
143
+ │ │ └── index.js # Application entry
144
+ ├── cache/ # Cache configuration directory
145
+ ├── com/ # Common components directory
146
+ ├── config/ # Global configuration directory
147
+ │ ├── local.json # Local configuration
148
+ │ ├── development.json # Development configuration
149
+ │ └── production.json # Production configuration
150
+ ├── db/ # Database files directory (SQLite, etc.)
151
+ ├── static/ # Global static resources
152
+ ├── index.js # Project entry
153
+ └── config.json # Main configuration file
154
+ ```
155
+
156
+ ## Application Development
157
+
158
+ ### Create Application
159
+
160
+ Each application contains independent business logic. Application configuration file `app.json`:
161
+
162
+ ```json
163
+ {
164
+ "name": "user",
165
+ "version": "1.0",
166
+ "title": "User",
167
+ "description": "User authentication service",
168
+ "author": "developer",
169
+ "scope": "server",
170
+ "main": "./index.js",
171
+ "func_name": "main",
172
+ "sort": 10,
173
+ "state": 1,
174
+ "sql": {
175
+ "way": "mysql",
176
+ "mysql": {
177
+ "host": "127.0.0.1",
178
+ "port": 3306,
179
+ "user": "root",
180
+ "password": "password",
181
+ "database": "example"
182
+ }
183
+ },
184
+ "cache": {
185
+ "way": "redis"
186
+ }
187
+ }
188
+ ```
189
+
190
+ ### Event Route Configuration (event.json)
191
+
192
+ Define application routing rules:
193
+
194
+ ```json
195
+ {
196
+ "/api/user/list": {
197
+ "method": "GET",
198
+ "title": "Get User List",
199
+ "auth": false
200
+ },
201
+ "/api/user/create": {
202
+ "method": "POST",
203
+ "title": "Create User",
204
+ "auth": true
205
+ },
206
+ "/user/*": {
207
+ "method": "ALL",
208
+ "title": "User Page Routes",
209
+ "auth": false
210
+ }
211
+ }
212
+ ```
213
+
214
+ ### Create API Interface
215
+
216
+ API is the core component of MM_OS framework. Each API consists of three files:
217
+
218
+ #### 1. api.json - API Configuration
219
+
220
+ ```json
221
+ {
222
+ "name": "user_sign_in",
223
+ "title": "User Login",
224
+ "description": "User login interface, supports username/password, phone/code, and social login",
225
+ "path": "/api/user/sign_in",
226
+ "type": "api",
227
+ "method": "ALL",
228
+ "cache": 0,
229
+ "param_path": "./param.json",
230
+ "check_param": true,
231
+ "sort": 1
232
+ }
233
+ ```
234
+
235
+ **api.json Field Description:**
236
+
237
+ | Field | Type | Required | Description |
238
+ |-------|------|----------|-------------|
239
+ | name | string | Yes | Unique API identifier |
240
+ | title | string | Yes | Display name |
241
+ | description | string | No | Description |
242
+ | path | string | Yes | Access path |
243
+ | type | string | Yes | Type, fixed as "api" |
244
+ | method | string | Yes | HTTP method: GET, POST, ALL |
245
+ | cache | number | No | Cache time in seconds, 0 means no cache |
246
+ | param_path | string | No | Parameter validation config path |
247
+ | check_param | boolean | No | Whether to validate parameters |
248
+ | sort | number | No | Sort order |
249
+
250
+ #### 2. param.json - Parameter Validation Configuration
251
+
252
+ ```json
253
+ {
254
+ "title": "User Login Validation Model",
255
+ "name": "user_sign_in",
256
+ "filter": true,
257
+ "get": {
258
+ "query": ["account", "password", "code"],
259
+ "query_required": ["account"]
260
+ },
261
+ "post": {
262
+ "body": ["account", "password", "code", "phone"],
263
+ "body_required": ["account"]
264
+ },
265
+ "list": [
266
+ {
267
+ "name": "account",
268
+ "title": "Account",
269
+ "type": "string",
270
+ "string": {
271
+ "min": 5,
272
+ "max": 16,
273
+ "format": "username"
274
+ }
275
+ },
276
+ {
277
+ "name": "password",
278
+ "title": "Password",
279
+ "type": "string",
280
+ "string": {
281
+ "min": 32,
282
+ "max": 32,
283
+ "format": "password"
284
+ }
285
+ },
286
+ {
287
+ "name": "phone",
288
+ "title": "Phone Number",
289
+ "type": "string",
290
+ "string": {
291
+ "format": "phone",
292
+ "range": [11, 11]
293
+ }
294
+ },
295
+ {
296
+ "name": "code",
297
+ "title": "Verification Code",
298
+ "type": "string"
299
+ }
300
+ ]
301
+ }
302
+ ```
303
+
304
+ **param.json Field Description:**
305
+
306
+ | Field | Type | Description |
307
+ |-------|------|-------------|
308
+ | title | string | Validation model name |
309
+ | name | string | Model identifier |
310
+ | filter | boolean | Whether to enable filtering |
311
+ | get.query | array | Acceptable query parameters for GET |
312
+ | get.query_required | array | Required parameters for GET |
313
+ | post.body | array | Acceptable body parameters for POST |
314
+ | post.body_required | array | Required parameters for POST |
315
+ | list | array | Parameter validation rules |
316
+
317
+ **Supported Parameter Types:**
318
+ - `string`: String type, supports format (phone, email, username, password), min, max, range
319
+ - `number`: Number type, supports min, max, range
320
+ - `boolean`: Boolean type
321
+ - `array`: Array type
322
+ - `object`: Object type
323
+
324
+ #### 3. index.js - API Implementation
325
+
326
+ ```javascript
327
+ /**
328
+ * User Login API
329
+ * @param {Object} ctx HTTP context
330
+ * @param {Object} db Data manager
331
+ * @return {Object} Execution result
332
+ */
333
+ async function main(ctx, db) {
334
+ // Get request parameters
335
+ var params = ctx.method === "POST" ? ctx.request.body : ctx.request.query;
336
+
337
+ // Validate parameters
338
+ var account = params['account'];
339
+ var password = params['password'];
340
+
341
+ if (!account) {
342
+ return { code: 30001, message: 'Account cannot be empty' };
343
+ }
344
+ if (!password) {
345
+ return { code: 30002, message: 'Password cannot be empty' };
346
+ }
347
+
348
+ // Query user
349
+ db.table = "user_account";
350
+ db.key = "user_id";
351
+ var users = await db.get({ username: account });
352
+
353
+ if (users.length === 0) {
354
+ return { code: 60001, message: 'User does not exist' };
355
+ }
356
+
357
+ var user = users[0];
358
+
359
+ // Validate password
360
+ var pass = (password + user.salt).md5();
361
+ if (pass !== user.password) {
362
+ return { code: 30003, message: 'Incorrect password' };
363
+ }
364
+
365
+ // Set login state
366
+ ctx.session.user = user;
367
+
368
+ // Return result
369
+ return {
370
+ code: 200,
371
+ message: 'Login successful',
372
+ data: {
373
+ user_id: user.user_id,
374
+ username: user.username,
375
+ nickname: user.nickname
376
+ }
377
+ };
378
+ }
379
+
380
+ exports.main = main;
381
+ ```
382
+
383
+ ### Event Handler Entry (main.js)
384
+
385
+ ```javascript
386
+ // Use API manager
387
+ var api = $.admin.api('user_web', 'Website - User Management');
388
+ api.call('update');
389
+
390
+ /**
391
+ * @description Main handler function
392
+ * @param {Object} ctx HTTP context
393
+ * @param {Object} db Data manager
394
+ * @return {Object} Execution result
395
+ */
396
+ async function main(ctx, db) {
397
+ // Set database connection
398
+ $.push(db, $.admin.sql('sys').db(), true);
399
+
400
+ // Use template engine
401
+ db.tpl = new $.Tpl();
402
+ var bag = db.tpl.viewBag;
403
+ bag.path = ctx.path;
404
+ bag.query = ctx.query;
405
+
406
+ // Execute API routing
407
+ return await api.run(ctx, db);
408
+ }
409
+
410
+ exports.main = main;
411
+ ```
412
+
413
+ ## Configuration
414
+
415
+ MM_OS supports multiple configuration options:
416
+
417
+ - **web**: Web server configuration
418
+ - **mysql**: MySQL database configuration
419
+ - **sqlite**: SQLite database configuration
420
+ - **cache**: Cache configuration (`way` specifies type: `memory`, `redis`, `mongodb`)
421
+ - **redis**: Redis cache configuration
422
+ - **mongodb**: MongoDB configuration
423
+ - **mqtt**: MQTT server configuration
424
+ - **socket**: Socket server configuration
425
+
426
+ ### Configuration File Example
427
+
428
+ ```json
429
+ {
430
+ "name": "mos",
431
+ "title": "Server System",
432
+ "log": {
433
+ "level": "debug",
434
+ "file": true
435
+ },
436
+ "web": {
437
+ "state": true,
438
+ "host": "0.0.0.0",
439
+ "port": 8000,
440
+ "socket": false,
441
+ "cos": {
442
+ "status": true,
443
+ "origin": "*"
444
+ },
445
+ "static": {
446
+ "state": 1,
447
+ "root": "./static"
448
+ }
449
+ },
450
+ "mysql": {
451
+ "host": "127.0.0.1",
452
+ "port": 3306,
453
+ "user": "root",
454
+ "password": "password",
455
+ "database": "example"
456
+ },
457
+ "cache": {
458
+ "way": "redis"
459
+ },
460
+ "redis": {
461
+ "host": "localhost",
462
+ "port": 6379,
463
+ "password": "",
464
+ "database": 0
465
+ }
466
+ }
467
+ ```
468
+
469
+ ## Global Objects
470
+
471
+ MM_OS provides rich global objects for development:
472
+
473
+ ### `$` Object
474
+
475
+ | Property | Description |
476
+ |----------|-------------|
477
+ | `$.sql` | Database operation object |
478
+ | `$.cache` | Cache operation object |
479
+ | `$.log` | Log object |
480
+ | `$.admin` | Admin object |
481
+ | `$.eventer` | Event bus |
482
+ | `$.config` | Configuration manager |
483
+ | `$.Tpl` | Template engine class |
484
+ | `$.ret` | Response utility |
485
+ | `$.run_path` | Current runtime path |
486
+
487
+ ### `$.ret` Response Utility
488
+
489
+ ```javascript
490
+ // Success response
491
+ return $.ret.body(data); // { code: 200, message: 'success', data: data }
492
+
493
+ // Error response
494
+ return $.ret.error(code, message); // { code: code, message: message }
495
+ ```
496
+
497
+ ## Development Guide
498
+
499
+ 1. **Install dependencies**: `npm install`
500
+ 2. **Development and debugging**: `npm run dev`
501
+ 3. **Run tests**: `npm run test`
502
+
503
+ ## License
504
+
505
+ ISC