Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
falcor-sync-model-forked
Advanced tools
A unified data store - Falcor Model#get()
and Model#getValue()
return promises, regardless of whether a value is cached. This allows all code that reads a Falcor model to be written in the same way, regardless of where the data lives.
Synchronous rendering - Unfortunately, current versions of Angular and React can only render synchronously, i.e. can't render promises. Using Falcor thus requires keeping a separate data store which duplicates the contents of the cache, and writing code to keep the two in sync.*
The goal of this lib is to allow a Falcor model to be used directly as a data store, by providing a way to read the model synchronously and still have it sync to its data source. As long as synchronous reads are only used for rendering, this won't interfere with Falcor's unified model ethic.
falcor-sync-model extends Falcor.Model
by adding a single getValueSync()
method which takes the same arguments as Falcor.Model#getValue()
. The value is returned synchronously, and causes the model to load data from its datasource as a side effect.
var SyncModel = require('falcor-sync-model');
var HttpDataSource = require('falcor-http-datasource');
var App = React.createClass({
getInitialState() {
return {
store: new SyncModel({
onChange: () => this.forceUpdate(),
source: new HttpDataSource('/model.json')
}).batch()
}
},
render() {
return <div>
Hello {this.store.getValueSync('self.name')}!
</div>
}
});
npm install falcor-sync-model
FAQs
A Falcor model that can be read from synchronously
We found that falcor-sync-model-forked 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.