
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
falcor-sync-model
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
The npm package falcor-sync-model receives a total of 0 weekly downloads. As such, falcor-sync-model popularity was classified as not popular.
We found that falcor-sync-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
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.