
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
compose-providers
Advanced tools
Compose your React provider components to avoid boilerplates.
npm i compose-providers
Assume you're using serveral libraries that requires using their provider components like:
and you have to nest them around your app to get everything work
render(
<ErrorBoundary>
<QueryClientProvider client={queryClient}>
<IntlProvider locale={locale} messages={messages}>
<BrowserRouter>{/** your app */}</BrowserRouter>
</IntlProvider>
</QueryClientProvider>
</ErrorBoundary>,
)
With compose-providers
you can compose those providers into one component so that you get rid of all those boilerplates.
import { composeProviders } from "compose-providers"
const AppContainer = composeProviders([
ErrorBoundary,
// You won't be unfamiliar if you have configured tools like babel/eslint
[
QueryClientProvider,
{
client: queryClient,
},
],
[
IntlProvider,
{
locale,
messages,
},
],
BrowserRouter,
])
render(<AppContainer>{/** your app */}</AppContainer>)
This is especiall useful when you are writing tests and need to combine different providers as wrappers to get your component work:
// RouteComponent.test.tsx
import { render } from "@testing-library/react"
// const wrapper = (props) => (
// <QueryClientProvider>
// <BrowserRouter>{props.children}</BrowserRouter>
// </QueryClientProvider>
// )
const wrapper = composeProviders([QueryClientProvider, BrowserRouter])
render(<RouteComponent />, {
wrapper,
})
// IntlComponent.test.tsx
import { render } from "@testing-library/react"
// const wrapper = (props) => (
// <QueryClientProvider>
// <IntlProvider>{props.children}</IntlProvider>
// </QueryClientProvider>
// )
const wrapper = composeProviders([QueryClientProvider, IntlProvider])
render(<IntlComponent />, {
wrapper,
})
MIT © SevenOutman
FAQs
My awesome typescript library
We found that compose-providers 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.