Evgeny Gazdovsky

Results 22 comments of Evgeny Gazdovsky

this code add 4 child processes every interval: ``` const { RTCPeerConnection } = require('wrtc'); setInterval(() => { const peer = new RTCPeerConnection(); peer.close(); }, 10000); ``` and this only...

@markandrus run `htop` and calculate the count of `nodejs` processes. you can press `T` to wiev as tree. And you wii se: Every process have own PID or use ```...

And for this code ``` const peer = new RTCPeerConnection(); peer.close(); ``` (when close connection at same time) I have segmentation fault!

create store: ``` export const useStore = createStore(() => useState({})); ``` and use them: ``` const store = useStore() ``` returns `store === null` for the React 17

There is a different babel version in the react 17. Could it be a reason?

one more note, I use react native. It not depends from react-dom

Can't reproduce at expo. All works as well. On my envirenment bug exists when import custom hook from module.

I just tested recoil for my project. Usually, I use a model like a store in the redux with dynamic keys for every item in the store (atoms in the...