
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.
json-api-store
Advanced tools
An isomorphic JavaScript library that acts as an in memory data store for JSON API data.
An isomorphic JavaScript library that acts as an in memory data store for JSON API data. Changes are broadcast using RxJS. Built to work with React.
At the moment the primary use can for JSON API Store is in the browser:
// Create a new store instance.
var adapter = new Store.AjaxAdapter({ base: "/api/v1" });
var store = new Store(adapter);
// Define the "categories" type.
store.define([ "categories", "category" ], {
title: Store.attr(),
products: Store.hasMany()
});
// Define the "products" type.
store.define([ "products", "product" ], {
title: Store.attr(),
category: Store.hasOne()
});
// Subscribe to events using RxJS.
store.observable.subscribe(function (event) {
console.log(event.name, event.type, event.id, event.resource);
});
// Load all the products.
store.load("products", { include: "category" }, function (products) {
products.length; // 1
products[0].id; // "1"
products[0].title; // "Example Book"
products[0].category.id; // "1"
products[0].category.title; // "Books"
products[0] === store.find("products", "1"); // true
products[0].category === store.find("categories", "1"); // true
});
You can also use JSON API Store in a Node.js environment (currently, there aren't any adapters that work in a Node.js):
NOTE: Without an adapter the CLUD methods (create, load, update and
destroy) cannot be used.
var Store = require("json-api-store");
var store = new Store();
store.define([ "categories", "category" ], {
title: Store.attr(),
products: Store.hasMany()
});
store.define([ "products", "product" ], {
title: Store.attr(),
category: Store.hasOne()
});
store.add({
type: "products",
id: "1",
attributes: {
title: "Example Product"
},
relationships: {
category: {
data: {
type: "categories",
id: "1"
}
}
}
});
store.add({
type: "categories",
id: "1",
attributes: {
title: "Example Category"
}
});
store.find("products", "1").category.title; // "Example Category"
Full documentation is available on the website:
http://particlesystem.com/json-api-store/
npm i json-api-store
bower i json-api-store
To use directly in the browser you can grab the store.prod.js file.
FAQs
An isomorphic JavaScript library that acts as an in memory data store for JSON API data.
The npm package json-api-store receives a total of 65 weekly downloads. As such, json-api-store popularity was classified as not popular.
We found that json-api-store 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.