
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
zajil-express-rpc
Advanced tools
make backend data types and functions accessible from frontend.
No need to make complicated REST APIs just to call the backend function you want to call using REST API.
Type-safe communication channel and forces javascript to use safe integers for better accuracy.
import express from 'express';
import { Zajil , int , string , float } from "./rpc.js";
// class templates to be shared with frontend
class response {
status = int;
msg = string;
data = {
name : string,
age: int
}
}
// rpc confugration
let rpc = new Zajil( "rpc_v1" );
rpc.return( response )
rpc.params( string , int , string , float )
rpc.function (
function register( name , age , subject , grade ) {
// write code to register user <<<<
const resp = new response;
resp.status = 201;
resp.msg = "created"
return resp
}
)
rpc.return( response )
rpc.params( string , int , string , float )
rpc.function (
function some_other_stuffs( name , age , subject , grade ) {
// write code to register user <<<<
const resp = new response;
resp.status = 201;
resp.msg = "created"
return resp
}
)
const app = express()
// connecting rpc to express.js
rpc.linkApp(app);
app.listen(8080);
By Hussein Layth Al-Madhachi
FAQs
make backend data types and functions accessible from frontend
The npm package zajil-express-rpc receives a total of 1 weekly downloads. As such, zajil-express-rpc popularity was classified as not popular.
We found that zajil-express-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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.