
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
react-promise
Advanced tools
[](https://nodei.co/npm/react-promise/)
a react.js hook for general promise written in typescript. Let's consider a trivial example: you have a promise such as this
let prom = new Promise(function(resolve, reject) {
setTimeout(function() {
resolve('a value')
}, 100)
})
and you want to make a component, which renders out in it's body 'a value'. Without react-promise, such component looks like this:
class ExampleWithoutAsync extends React.Component { // you can't use stateless component because you need a state
constructor () {
super()
this.state = {}
}
componentDidMount() {
prom.then((value) => {
this.setState({val: value})
})
}
render () {
if (!this.state.val) return null
return <div>{this.state.val}</div>
}
// or you could use a combination of useEffect and useState hook, which is basically the implementation of this small library
and with react-promise:
import Async from 'react-promise';
const ExampleWithAsync = (props) => {
const {value, loading} = usePromise<string>(prom)
if (loading) return null
return <div>{value}</div>}
}
The only argument can be a promise or a promise resolving thunk:
usePromise<T>(
promiseOrFn: (() => Promise<T>) | Promise<T>
)
it might be desirable to let the usePromise call the promise returnig function, because you often don't want to do that inside the render of your functional component.
Full state object interface returned by the hook looks like:
{
loading: boolean
error: Error | null
value: T | undefined // where T is your shape of the resolved data you expect obviously
}
With npm:
npm i react-promise
FAQs
[](https://nodei.co/npm/react-promise/)
The npm package react-promise receives a total of 5,215 weekly downloads. As such, react-promise popularity was classified as popular.
We found that react-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
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.