![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
msgpack rpc over websocket
server:
import asyncio
from sanic import Sanic
from wsrpc import WebsocketRPC
app = Sanic(__name__)
class SampleHandler:
def __init__(self, rpc):
self.remote = rpc
async def add(self, a, b):
await asyncio.sleep(5)
return a + b
async def test(self):
return 23
@app.websocket('/')
async def home(request, ws):
await WebsocketRPC(ws, SampleHandler).run()
app.run(host="0.0.0.0", port=5555, debug=False)
client:
import asyncio
import websockets
from wsrpc import WebsocketRPC
loop = asyncio.get_event_loop()
async def go():
async with websockets.connect('ws://127.0.0.1:5555/') as ws:
rpc = WebsocketRPC(ws=ws, client_mode=True)
jobs = [rpc.request.add(a, b) for a, b in zip(range(10), range(5, 15))]
r = await asyncio.gather(*jobs)
print(r)
r = await rpc.notify.add(2, 3)
print(r)
await rpc.close()
loop.run_until_complete(go())
FAQs
msgpack rpc over websocket
We found that websocket-rpc demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.