
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.

ThingModel synchronizes data and models in realtime over the network for multiple devices.
ThingModel is a new wheel, but a simple, fast and light one.
ThingModel does not need compilation, it does not include a DSL either and everything is done during runtime. You can build the model on the fly and the connected applications can learn it during their executions.
If you are looking for innovative products about models, you should also take a look at ThingML or Kevoree.


If this server doesn't suit your needs, you can easely develop your own ThingModel server.

The time machine saves the model in realtime (1 hertz as maximum frequency by default). Thanks to protocol buffers, gzip and sqlite, it's very light.
And you can go back in time just with a HTTP request.
ThingModel is tested and used almost every days and it works, but it's not stable.
Please follow the checklist if you are experiencing some weird problems.
Nuget: Install-Package ThingModel -Pre
Bower: bower install ThingModel
Maven: need motivation
Otherwise: Download
// Declare the rabbit type
var typeRabbit = BuildANewThingType.Named("rabbit")
.WhichIs("Just a rabbit")
.ContainingA.String("name")
.AndA.LocationLatLng()
.AndA.NotRequired.Double("speed")
.AndAn.Int("nbChildren", "Number of children");
// Create a rabbit instance
var rabbit = BuildANewThing.As(typeRabbit)
.IdentifiedBy("ab548")
.ContainingA.String("name", "Roger")
.AndA.Location(new Location.LatLng(60,10))
.AndAn.Int("nbChildren", 12);
// The warehouse stores the objects
var warehouse = new Warehouse();
// Create a websocket client
var client = new Client("Emitter", "ws://localhost:8083/", warehouse);
// Register the rabbit
warehouse.RegisterThing(rabbit);
// Send the changes to the server
client.Send();
var warehouse = new Warehouse();
var client = new Client("Receiver", "ws://localhost:8083/", warehouse);
warehouse.Events.OnNew += (sender, args) => {
Console.WriteLine(args.Thing.String("name"));
};
FAQs
Synchronize data and models across multiple devices
The npm package thingmodel receives a total of 2 weekly downloads. As such, thingmodel popularity was classified as not popular.
We found that thingmodel 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.