wbzhong-hello

Results 3 issues of wbzhong-hello

`inputStreamParser.onRequest(request => { const requestType = request.type; requestHandlersQueue.filter(rh => rh.type === requestType).forEach(handlerContainer => { const requestHandler = handlerContainer.onRequest; const resultArgs = requestHandler(request.args) sendResponse(request.id, resultArgs); }); });` What if `requestHandlersQueue.filter` returns...

enhancement
good first issue

electron-cgi allows to register multiple request handlers for a request type, while its dotnet counterpart will throw a `DuplicateHandlerForRequestTypeException`. I think allow multiple subscription matches the design pattern of both...

Hi, I am using the [Microchip-SAMD51-LAN9252-SSC_Config.xml](https://github.com/Microchip-MPLAB-Harmony/ethercat/blob/master/apps/ethercat_counter_foe_app/firmware/src/slave_stack/lan9252/Microchip-SAMD51-LAN9252-SSC_Config.xml) in my project. The ESI file generated by SSC contains below ESC_CONFIG_DATA: ``` 2048 800E00CC8813FF00000000800000 ``` The 5th byte is used to configure Sync/Latch...