Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
The missing piece for an immutable flux application architecture
This piece of architecture is intended to be used with the Facebook Flux's own dispatcher. It solves the problem of having a mutable store when using Immutable.js.
Atom
is a class behaving like Clojure's Atoms (but it's not thread-safe for now on threaded js environments for example: web workers). Its goal is to ensure that you can mutate safely your store and dereference immutable objects from it.
For now, you have to use browserify in order to import atomstore
$ npm install --save atomstore
Let's take this simple example from Facebook. Here's how to use atoms with it:
var Dispatcher = require('flux').Dispatcher;
var Atom = require('atomstore').Atom;
var Immutable = require('immutable');
// Init dispatcher & stores
var flightDispatcher = new Dispatcher();
var CountryStore = new Atom({country: null});
var CityStore = new Atom({city: null});
var FlightPriceStore = new Atom({price: null});
// Define the swap function. In this example: a set key function for immutable maps.
// Keep in mind that you get an immutable object in the `this`
// and you have to return an another immutable
function assoc(k, v) {
return this.set(k, v);
}
// Digest a country-update
// flightDispatcher.dispatch(Immutable.Map({
// actionType: 'country-update',
// selectedCountry: 'australia'
// }));
CountryStore.dispatchToken = flightDispatcher.register(function(payload) {
if (payload.get('actionType') === 'country-update') {
CountryStore.swap(assoc, "city", payload.get('selectedCountry'));
}
});
// Digest a city-update
// flightDispatcher.dispatch(Immutable.Map({
// actionType: 'city-update',
// selectedCity: 'paris'
// }));
CityStore.dispatchToken = flightDispatcher.register(function(payload) {
if (payload.get('actionType') === 'city-update') {
flightDispatcher.waitFor([CountryStore.dispatchToken]);
CityStore.swap(assoc, "city", payload.get('selectedCity'));
}
});
// Digest a city-update or country-update in order to upgrade the price
FlightPriceStore.dispatchToken = flightDispatcher.register(function(payload) {
switch (payload.get('actionType')) {
case 'country-update':
case 'city-update':
flightDispatcher.waitFor([CityStore.dispatchToken]);
var newPrice = getFlightPriceStore(CountryStore.deref().get('country'),
CityStore.deref().get('city'));
FlightPriceStore.swap(assoc, "price", newPrice);
break;
}
});
It may seem more verbose at first but in the end you are able to ensure that your store is updated atomically as well as keeping your application completely immutable.
$ npm install
# Test the code, will auto-compile the es6
$ npm test
# Compile the es6 manually
$ gulp es6
PRs are welcome. You just need to provide tests with your code and make the CI pass !
MIT
FAQs
The missing piece for an immutable flux application architecture
The npm package atomstore receives a total of 4 weekly downloads. As such, atomstore popularity was classified as not popular.
We found that atomstore 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
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.