@helpscout/react-utils
Advanced tools
Weekly downloads
Readme
A collection of handy utilities for React.
npm install --save @helpscout/react-utils
This library has a peerDependencies
listing of react
(version 15
or 16
).
This library comes with a handful of useful functions. Below is an example of how you can use the getDocumentFromComponent
function to retrieve the actual document
the component is mounted to (rather than assuming window.document
).
import React from 'react'
import getDocumentFromComponent from '@helpscout/react-utils/dist/getDocumentFromComponent'
class Napoleon extends React.Component {
...
componentDidMount () {
this.doc = getDocumentFromComponent(this)
// document
}
...
}
Check out the documentation for more details.
FAQs
Handy utilities for React
The npm package @helpscout/react-utils receives a total of 577 weekly downloads. As such, @helpscout/react-utils popularity was classified as not popular.
We found that @helpscout/react-utils demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.