
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
angular2-websocket
Advanced tools
Based on https://github.com/AngularClass/angular-websocket and migrated to Angular2 ## Installation
Based on https://github.com/AngularClass/angular-websocket and migrated to Angular2
npm install angular2-websocket
import {$WebSocket} from 'angular2-websocket/angular2-websocket'
var ws = new $WebSocket("url");
ws.send(event);
also ws.getDataStream() returns Subject to which you can attach an Observer (https://github.com/Reactive-Extensions/RxJS)
npm run typings
npm run compile
The default value for binary type is 'arrayBuffer'.
import {$WebSocket, WebSocketSendMode} from 'angular2-websocket/angular2-websocket';
// connect
var ws = new $WebSocket("ws://127.0.0.1:7000");
// you can send immediately after connect,
// data will cached until connect open and immediately send or connect fail.
// when connect fail, websocket will reconnect or not,
// you can set {WebSocketConfig.reconnectIfNotNormalClose = true} to enable auto reconnect
// all cached data will lost when connect close if not reconnect
// set received message callback
ws.onMessage(
(msg: MessageEvent)=> {
console.log("onMessage ", msg.data);
},
{autoApply: false}
);
// set received message stream
ws.getDataStream().subscribe(
(msg)=> {
console.log("next", msg.data);
ws.close(false);
},
(msg)=> {
console.log("error", msg);
},
()=> {
console.log("complete");
}
);
// send with default send mode (now default send mode is Observer)
ws.send("some thing").subscribe(
(msg)=> {
console.log("next", msg.data);
},
(msg)=> {
console.log("error", msg);
},
()=> {
console.log("complete");
}
);
ws.send("by default, this will never be sent, because Observer is cold.");
ws.send("by default, this will be sent, because Observer is hot.").publish().connect();
ws.setSendMode(WebSocketSendMode.Direct);
ws.send("this will be sent Direct, because send mode is set to Direct.");
ws.send("this will be sent and return Promise.", WebSocketSendMode.Promise).then(
(T) => {
console.log("is send");
},
(T) => {
console.log("not send");
}
);
ws.send("this will be sent and return Observer.").subscribe(
(msg)=> {
console.log("next", msg.data);
},
(msg)=> {
console.log("error", msg);
},
()=> {
console.log("complete");
}
);
ws.close(false); // close
ws.close(true); // close immediately
To set the binary type for the websocket one can provide it as string in the constructor. Allowed types are:
var ws = new $WebSocket("ws://127.0.0.1:7000", null, null, 'arraybuffer');
FAQs
Based on https://github.com/AngularClass/angular-websocket and migrated to Angular2 ## Installation
The npm package angular2-websocket receives a total of 1,017 weekly downloads. As such, angular2-websocket popularity was classified as popular.
We found that angular2-websocket demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.