![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
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 1 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.