Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
mobx-session
Advanced tools
Save your session with MobX, using IndexedDB, WebSQL, or localStorage
Mobx Session helps you manage your session data providing an API to save and access your info whenever and wherever you want.
The stored data will be saved with localforage.
yarn:
yarn add mobx-session
npm:
npm install mobx-session
It's really straight forward to use.
First you must initialize the Storage. For that, you should call
import SessionStore from 'mobx-session';
SessionStore.initialize();
This should be called before any other method call, so I would recommend putting it on the index.js or App of your site, or in the top of another Store that uses SessionStore (like in this example).
There are several config options to customize this method, go to the API doc to see more.
For example
import SessionStore from 'mobx-session';
SessionStore.initialize({ name: 'my-app-name' });
Then, you can use it wherever you want.
import SessionStore from 'mobx-session';
const MyComponent = observer(() => {
if (SessionStore.initialized) {
return (
<div>
{
SessionStore.hasSession
? <p>Hello!</p>
: <p>Login</p>
}
</div>
);
}
return null;
})
You can use the decorator syntax
import SessionStore from 'mobx-session';
@observer
const MyComponent = () => {
if (SessionStore.initialized) {
return (
<div>
{
SessionStore.hasSession
? <p>Hello!</p>
: <p>Login</p>
}
</div>
);
}
return null;
}
TIP: don't forget to make your component an observer so you don't lose the reference.
import SessionStore from 'mobx-session';
class UserStore {
constructor() {
extendObservable(this, {
user: null,
get loggedIn() {
return this.user !== null && SessionStore.hasSession;
},
});
}
......
}
You can also use the decorator syntax
import SessionStore from 'mobx-session';
class UserStore {
@observable user = null;
@computed get loggedIn() {
return this.user !== null && SessionStore.hasSession;
}
......
}
TIP: inside a store, don't forget to use it inside a computed value or an auto-run so you don't loose the reference.
Initialize an instance of the storage inside the session.
Options can be the ones listed in the localforage library
Saves the session object in the store and storage
Deletes the session object from the store and the storage
Returns the session object saved if there's any
Returns true if the session store has been initialized. Could be useful to check this property before relying on other methods or properties from the store.
Returns true if there's a session object saved and false if there's not.
Bug reports (please use Issues) and pull requests are welcome on GitHub at https://github.com/rootstrap/mobx-session. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The library is available as open source under the terms of the MIT License.
mobx-session is maintained by Rootstrap with the help of our contributors.
FAQs
Save your session with MobX, using IndexedDB, WebSQL, or localStorage
We found that mobx-session 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
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.