![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
This is a storage that uses observer design pattern to call every listener after updating the storage.
Simple example. Using with React JS
npm install real-time --save
import React from "react";
import ReactDOM from "react-dom";
import RStorage from "real-time";
class Demo extends React.Component {
constructor(props){
super(props);
this.state = {
updateCounter: 0
}
this.increment = this.increment.bind(this);
this.setUsername = this.setUsername.bind(this);
this.componentWillMount = this.componentWillMount.bind(this);
}
increment(){
this.setState({
updateCounter: this.state.updateCounter + 1
})
}
setUsername(event){
event.preventDefault();
let value = this.refs.inp.value;
RStorage.setItem("username", value);
}
componentWillMount(){
RStorage.clean(); // if you want to clean localStorage after reloading
RStorage.subscribe("username", this.increment);
}
render(){
let username = RStorage.getItem("username");
return <div>
<h1>{(username) ? username : "empty value"}</h1>
<h4>{this.state.updateCounter}</h4>
<input type="text" onChange={this.setUsername} ref="inp"></input>
<button onClick={this.setUsername}>Set username</button>
</div>
}
}
FAQs
Save data, subscribe on it's updating and then update it.
The npm package real-time receives a total of 1 weekly downloads. As such, real-time popularity was classified as not popular.
We found that real-time 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
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.