ANOV Visualization Platform Kernel encapsulates all basic services, such as face recognition, gesture recognition, speech recognition, theme skin changing, internationalization, animation engine, basic components
npm install --save @anov/core
import * as anov from "@anov/core"
// 基础服务
anov.baseServer
// 运行时服务
anov.runtimeServer
// 环境服务
anov.envServer
// 数据源服务
anov.dataSourceServer
// 系统检测服务
anov.systemCheckServer
// 语音识别服务
anov.voiceRecognizeServer
// 语音反馈服务
anov.voiceFeedbackServer
// 人脸识别服务
anov.faceRecognizeServer
// 手势识别服务
anov.gestureRecognizeServer
// 光感识别服务
anov.lightSensorServer
// 页面服务
anov.pageServer
// 基础部件服务
anov.partServer
// 动作服务
anov.actionServer
// 快捷键服务
anov.hotkeyServer
// 国际化语音服务
anov.languageServer
// 动画服务
anov.animateServer
// 主题服务
anov.themeServer
// 音效服务
anov.soundServer
// 预加载服务
anov.preloadServer
// 大小适配服务
anov.sizeAdaptServer
// 场景特效服务
anov.specialEffectServer
// 存储芯片服务
anov.chipServer
// license服务
anov.licenseServer
Specific cases
...
// 得到系统当前上下文
anov.runtimeServer.getCurrentContext()
// 开启光感识别
anov.lightSensorServer.start()
// 切换到下个系统内置主题
anov.themeServer.next()
...
npm run build
npm publish