Rednas

Results 99 comments of Rednas

I also have errors in the config with nuxt ![Image](https://github.com/user-attachments/assets/4fe33646-bb27-49ec-b28f-e6a453033d64) **Tried** `import defineFormKitConfig from "@formkit/nuxt"` but that returns ![Image](https://github.com/user-attachments/assets/6bd95a29-2c4b-4d8b-8336-e46441b809d1) **nuxt.config.ts** ``` formkit: { autoImport: true, // In the future this...

Fixed it by copying the searchApiKey to the adminApiKey. Looks like the local server only uses a single master key for adding and searching ![image](https://github.com/user-attachments/assets/5a4f6efd-f3ad-4f33-aa88-8ca93bcb8367) Perhaps make the `adminApiKey` default...

Just tried it myself. I hope it can help🤞 **plugins/0.libraries.client.ts** ``` import InstantSearch from 'vue-instantsearch/vue3/es'; export default defineNuxtPlugin(nuxtApp => { nuxtApp.vueApp.use(InstantSearch) }) ``` **pages/search.vue** ``` {{ meili }} import "instantsearch.css/themes/algolia-min.css"...

Is it not possible to just return the handle of the session? It would be much more convenient for exporting/sharing I think🤔 Something like ``` // Return a safe representation...

Thanks for the feedback. Perhaps something for the roadmap? - [ ] ClientSession.toJSON() - [ ] toClientSession() Btw for me it's unclear why it's trying to convert to JSON in...

Or perhaps something like a connect via a handle `var session = await client.getSession(123)`

Pointers/handlers are not supported in nodejs ![image](https://github.com/user-attachments/assets/c2c56e51-f120-441e-aeec-4b56cf99f16a) And references will only work within the scope. I will look for a way to make the session available globally so that I...

My usecase is simulation. * Subscribe to 200 outputs (boolean) hopefully at the cycle time of the plc of 20ms🤞 * And write back the inputs (boolean) * I will...

Siemens is indeed superslow. - Not faster then 100ms with a limited set of subscribitions Schneider should be a lot faster with the dedicated card/core for opcua ![image](https://github.com/user-attachments/assets/cf1488b5-2780-4274-aa35-002237e75390) https://download.schneider-electric.com/files?p_enDocType=User+guide&p_File_Name=PHA83350-05_BMENUA0100_Install_Config_FINAL_20240621.pdf&p_Doc_Ref=PHA83350 I...