
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
ember-fryctoria
Advanced tools
Now the addon is in alpha, please help by reporting bugs and opening issues.
ember install ember-localforage-adapter
ember install ember-fryctoria
ember g reopen-syncer-initializer
ember-data v1.0.0-beta.16.1
ember-fryctoria utilizes ember-localforage-adapter to read and write locally.
It always try to connect to the server and fall back to local data when an offline error is caught.
When online, it will use your defalut store, adapter and serializer. After each request to server, it will automatically save records into localforage-adapter.
When offline, it will use the local backup(localforage) to retrive records. A queue of jobs is created when the user create, update or delete while offline. When online we flush this queue to keep the server in sync.
Features NOT supported(yet):
An object called syncer is responsible for syncing.
container.lookup('main:syncer')
store.get('syncer')
It has a jobs property whichs is a queue of operations including create, update and delete. These are your offline operations.
There are two important methods in syncer:
syncer.syncDown('user'); // remove all records in localforage and save all current user records into localforage
syncer.syncDown(user); // create or update user record into localforage
syncer.syncDown([user1, user2]); // create or update user records into localforage
In most cases, you do not need to manully sync since ember-fryctoria automatially syncUp before every request to server and automatially syncDown after every request to server.
store.find('user') // syncDown('user') is called.
store.fetchAll('user') // syncDown('user') is called.
store.find('user', 1) // syncDown(user) is called.
store.fetchById('user', 1) // syncDown(user) is called.
user.reload() // syncDown(user) is called.
When you sideload or embed records, you probably want to manully save sideloaded or embeded records to localforage. Also you may want to syncUp periodially. In these cases, you can manully syncDown or syncUp.
By default, when we get an error during syncUp, syncer will stop syncing. In the next syncUp, syncer will retry starting from the failed job.
You can customize this by overwriting handleSyncUpError method in syncer in reopen-syncer-initializer.
IMO, there is really not a single robust way to handle syncing faliure for a conventional database like SQL combined with ember data. I would recommand you to only enable user to read while offline. Or you should implement a robust way to handle syncing errors for your app.
By default, offline is defined by jqXHR && jqXHR.status === 0
.
jqXHR
You can overwrite this by overwriting isOffline method in syncer in reopen-syncer-initializer.
You can bypass syncing by passing an option object {bypass: true} at the end of a api call of store:
store.find('user', {bypass: true}) // this would not wait for syncing
FAQs
Make ember data work offline with automatic sync.
The npm package ember-fryctoria receives a total of 5 weekly downloads. As such, ember-fryctoria popularity was classified as not popular.
We found that ember-fryctoria 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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.