aiselp

Results 10 issues of aiselp

### Please make sure of the following things - [X] I have read the [documentation](https://alist.nn.ci). - [X] I'm sure there are no duplicate issues or discussions. - [X] I'm sure...

enhancement
inactive

## autox v7升级计划 升级包含以下内容 * **分离脚本引擎运行的进程(进行中)** 使脚本运行在与app不同的进程,彻底解决脚本崩溃连同app一起崩溃的问题 * **迁移app界面至m3风格** * **完善的插件扩展功能** 使用一个独立的页面显示已安装和可下载的插件,采用激活/禁用的方式在每次运行脚本时自动加载插件,无需在代码中显式加载 * **集成基于[Javet](https://github.com/caoccao/Javet)的v8/nodejs引擎** 完成这个功能需要大改旧的引擎框架,还需要为所有功能模块适配v8/nodejs引擎 * **全新的ui设计框架,采用vue3的[vue-core](https://github.com/vuejs/core)框架与[htm](https://github.com/developit/htm)模板引擎** 基于新的引擎设计,支持组件和vue一样的响应式状态 以上内容由开发者[aiselp](https://github.com/aiselp)策划,由于开发量较大,开发进度将比较缓慢,如有兴趣共同参与开发和测试可加入本人创建的[tg开发群](https://t.me/+bkx23tdbM6U3N2M1)交流 ## 参与开发基本操作 1. 首先确保你已经fork了此仓库,并且已拉取到本地并能够完成构建 2. 打开一个终端切换到项目目录输入 ```shell git remote add aiselp...

'Synthetic Module' created with an object that has a get property does not recognize the get property. ```js var model = { get default(){ return 5 } } ``` At...

```kt V8Host.getNodeInstance().createV8Runtime().use { runtime -> runtime.getNodeModule(NodeModuleModule::class.java).setRequireRootDirectory(File("/")) runtime.v8ModuleResolver = JavetBuiltInModuleResolver() runtime.getExecutor(""" import events from "node:events" import stream from "node:stream" globalThis.a = events === stream """.trimIndent()).setModule(true).executeVoid() runtime.await() println("a: ${runtime.globalObject.getBoolean("a")}") } ``` This...

bug

I plan to write a loader using the node:vm module to fully control module parsing and loading, but I found that the value of SourceTextModule is `undefined`, and I tried...

When a module is loaded I want to set something on `import.meta` in the module for the module to use, which by default is just an empty object. The module...

help wanted

**Version** The version you are currently using vfox 0.6.0 **OS** macOS、Linux、Windows Windows11 **Describe the bug** 按照入门文档运行powerShell的配置命令后 ```ps1 if (-not (Test-Path -Path $PROFILE)) { New-Item -Type File -Path $PROFILE -Force };...

bug

There are some performance issues when accessing Java object methods and properties using JavaScript. Testing shows that the following code runs about 20 times slower than in Rhino. ```js //...