
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@push-rpc/http
Advanced tools
HTTP transport for Push-RPC.
Server-side push is not supported, only client-initiated messages are enabled.
Integrates with Koa or Express for HTTP server. Uses Fetch for making HTTP requests.
import * as Koa from "koa"
import {createRpcServer, createRpcClient} from "@push-rpc/core"
import {createKoaHttpServer, createHttpClient} from "@push-rpc/http"
...
/* server part */
const services = {
async getHello() {
return "Hello from Server"
},
}
// remote id is required for assigning separate HTTP requests to a single session
function getRemoteId(ctx: Koa.Context) {
return "1" // share a single session for now, real impl could use cookies or some other meaning for HTTP sessions
}
createRpcServer(services, createKoaHttpServer(5555, getRemoteId))
...
/* client part */
const {remote} = await createRpcClient(0, () => createHttpClient("http://localhost:5555"))
console.log("From server: " + (await remote.getHello()))
All requests and responses are JSON-encoded.
Request path specifies operation to be invoked or topic to be queried. Path is static, no parameters is path are supported. Use request body instead to send parameters.
Query string parameters are not used.
When error is returned from the server, response is 400, response status string contains error message, response body contains error details in JSON-format.
| Push-RPC Message Type | HTTP Verb | Description |
|---|---|---|
| CALL | POST | Calls a remote method. POST body is request object, response body is response object. |
| GET | PUT | Query topic once for a data. POST body is query parameters, response body is response object. |
| SUBSCRIBE | PATCH | Subscribe topic for a data, but server will return them only once. Behaves the same as GET type. POST body is query parameters, response body is response object. |
FAQs
HTTP transport for Push-RPC.
The npm package @push-rpc/http receives a total of 11 weekly downloads. As such, @push-rpc/http popularity was classified as not popular.
We found that @push-rpc/http demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.