mkhoussid

Results 12 issues of mkhoussid

Suppose I have two nodes, each with an arbitrary amount of ports. I'm trying to figure out if I can create a link between these two `DefaultNodeModel` components, not between...

## I'm submitting a... [ ] Regression (a behavior that used to work and stopped working in a new release) [ ] Bug report [ ] Performance issue [ ]...

enhancement

## I'm submitting a... [ ] Regression (a behavior that used to work and stopped working in a new release) [x] Bug report [ ] Performance issue [ ] Feature...

bug

## I'm submitting a... [ ] Regression (a behavior that used to work and stopped working in a new release) [ ] Bug report [ ] Performance issue [ ]...

enhancement

Currently, I have the following: ``` // client . . . import { io } from 'socket.io-client'; . . . const socket = io('https://my_domain.com', { reconnectionDelay: 1000, reconnection: true, reconnectionAttemps:...

Suppose the following: ```javascript import { createStore, combine, createEvent } from 'effector'; const handleSendMessage = createEvent(); const editMessage = createEvent(); const $messageInputFieldText = createStore(''); const $message = createStore({ text: 'hello'...

question

Suppose the following: ```javascript import { createStore, createEvent } from 'effector' const $store = createStore([42]) const event = createEvent() $store.on(event, (state) => { . . . console.log('equal', state === $store.getState())...

question

Hello, taking the code from the docs, I get something like this: Any ideas what's going on?

question