Rednas
Rednas
I also have errors in the config with nuxt  **Tried** `import defineFormKitConfig from "@formkit/nuxt"` but that returns  **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  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"...
Any updates?
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  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  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...