
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.
SocketCluster real-time model component for reactive front ends.
Designed to work with sc-crud-rethink https://github.com/SocketCluster/sc-crud-rethink
Inside the directory from which front end files are served, run the command:
npm install sc-model --save
You can import it in your scripts like this (example; your exact path may differ):
import SCModel from '/node_modules/sc-model/sc-model.js';
See https://github.com/socketcluster/sc-sample-inventory for sample app which demonstrates this component in action.
An SCModel object can be instantiated like this:
this.productModel = new SCModel({
// Pass the SocketCluster socket object.
socket: pageOptions.socket,
type: 'Product',
id: this.productId,
fields: ['name', 'qty', 'price', 'desc']
});
The SCModel allows you to read and manipulate a single documents in RethinkDB from the front end.
The productModel.value property is a Product object; this object updates in real-time to match the associated resource on the server.
If using a reactive front end framework like VueJS, you can bind the productModel.value property directly to your template since the object reference never changes (only the internal properties change).
In VueJS, you can instantiate and attach the model value to your component like this:
data: function () {
this.productModel = new SCModel({
socket: pageOptions.socket,
type: 'Product',
id: this.productId,
fields: ['name', 'qty', 'price', 'desc']
});
return {
product: this.productModel.value
};
},
Then you can bind this data to your template like this:
// Render available properties of the product.
<b>{{product.id}}</b>
<b>{{product.name}}</b>
<b>{{product.qty}}</b>
<b>{{product.price}}</b>
<b>{{product.desc}}</b>
The SCModel tag supports the following attributes:
socket: A socketcluster-client socket; note that the same global socket object can be shared between multiple SCCollection and SCModel instances.type: This is the model/table name in RethinkDB.id: The id of the resource/document which this model represents.fields: The document fields to load for this model.FAQs
SocketCluster model component for the front end
We found that sc-model 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.

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.