From 306d68fd63facf5e1a9b559ae393ca98ccb40902 Mon Sep 17 00:00:00 2001 From: Nandan Raj Date: Sun, 4 Jul 2021 11:05:47 +0530 Subject: [PATCH] Fixed missing coma --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9deeaa1..94b9785 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ Initalize the server in the `componentWillMount` lifecycle method. You need to p componentWillMount() { // initalize the server (now accessible via localhost:1234) - httpBridge.start(5561, 'http_service' request => { + httpBridge.start(5561, 'http_service', request => { // you can use request.url, request.type and request.postData here if (request.type === "GET" && request.url.split("/")[1] === "users") {