![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.
awesome-debounce-promise
Advanced tools
Debounce your async calls with React in mind.
Forget about:
From the author of this famous SO question about debouncing with React.
yarn add awesome-debounce-promise
npm install awesome-debounce-promise --save
import AwesomeDebouncePromise from 'awesome-debounce-promise';
const asyncFunction = () => fetch("/api");
const asyncFunctionDebounced = AwesomeDebouncePromise(asyncFunction, 500, options)
const searchAPI = text => fetch('/search?text=' + encodeURIComponent(text));
const searchAPIDebounced = AwesomeDebouncePromise(searchAPI, 500);
class SearchInputAndResults extends React.Component {
state = {
text: '',
results: null,
};
handleTextChange = async text => {
this.setState({ text, results: null });
const result = await searchAPIDebounced(text);
this.setState({ result });
};
compponentWillUnmount() {
this.setState = () => {};
}
}
When calling debouncedSearchAPI
:
this.setState({ result });
call per api callconst saveFieldValue = (fieldId, fieldValue) =>
fetch('/saveField', {
method: 'PUT',
body: JSON.stringify({ fieldId, fieldValue }),
});
const saveFieldValueDebounced = AwesomeDebouncePromise(
saveFieldValue,
500,
// Use a key to create distinct debouncing functions per field
{ key: (fieldId, text) => fieldId },
);
class SearchInputAndResults extends React.Component {
state = {
value1: '',
value2: '',
};
onFieldTextChange = async (fieldId, fieldValue) => {
this.setState({ [fieldId]: fieldValue });
await saveFieldValueDebounced(fieldId, fieldValue);
};
render() {
const { value1, value2 } = this.state;
return (
<form>
<input
value={value1}
onChange={e => onFieldTextChange(1, e.target.value)}
/>
<input
value={value2}
onChange={e => onFieldTextChange(2, e.target.value)}
/>
</form>
);
}
}
const DefaultOptions = {
// By default, the key is null, which means that all the function calls
// will share the same debounced function
// Providing a key function permit to use the call arguments
// and route to a distinct debounced function
key: () => null,
// By default, a debounced function will only resolve
// the last promise it returned
// Former calls will stay unresolved, so that you don't have
// to handle concurrency issues in your code
onlyResolvesLast: true,
};
Other debouncing options are available and provided by an external low-level library: debounce-promise
FAQs
Debounce your async calls
We found that awesome-debounce-promise 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.