Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
@feathersjs/socketio-client
Advanced tools
The client for Socket.io Feathers connections
npm install @feathersjs/socketio-client --save
const feathers = require('@feathersjs/feathers');
const socketio = require('@feathersjs/socketio-client');
const io = require('socket.io-client');
const socket = io('http://api.feathersjs.com');
const app = feathers();
// Set up Socket.io client with the socket
app.configure(socketio(socket));
// Receive real-time events through Socket.io
app.service('messages')
.on('created', message => console.log('New message created', message));
// Call the `messages` service
app.service('messages').create({
text: 'A message from a REST client'
});
Please refer to the @feathersjs/socketio-client documentation for more details.
Copyright (c) 2018
Licensed under the MIT license.
4.0.0-pre.4 (2019-07-05)
remove
arguments (#1426) (fd54ae9)reduce
with map
(#1429) (44542e9)FAQs
The client for Socket.io through feathers-socketio
The npm package @feathersjs/socketio-client receives a total of 5,636 weekly downloads. As such, @feathersjs/socketio-client popularity was classified as popular.
We found that @feathersjs/socketio-client 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.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.