
Research
/Security News
Shai Hulud Strikes Again (v2)
Another wave of Shai-Hulud campaign has hit npm with more than 500 packages and 700+ versions affected.
@alessiofrittoli/react-api
Advanced tools
Run the following command to start using react-api in your projects:
npm i @alessiofrittoli/react-api
or using pnpm
pnpm i @alessiofrittoli/react-api
isComponentTypeCheck if the given input is a React ComponentType.
| Parameter | Default | Description |
|---|---|---|
P | unknown | The props the component accepts. |
| Parameter | Type | Description |
|---|---|---|
input | unknown | The input to check. |
Type: input is React.ComponentType<P>
true if the given input is a React ComponentType.false otherwise.import { isComponentType } from '@alessiofrittoli/react-api'
// or
import { isComponentType } from '@alessiofrittoli/react-api/utils'
const somefunction = ( Component: React.ComponentType | React.ReactNode ) => {
if ( isComponentType( Component ) ) {
return <Component />
}
return (
<>{ Component }</>
)
}
isReactNodeCheck if the given input is a React Node.
| Parameter | Type | Description |
|---|---|---|
input | unknown | The input to check. |
Type: input is React.ReactNode
true if the given input is a React Node.false otherwise.import { isReactNode } from '@alessiofrittoli/react-api'
// or
import { isReactNode } from '@alessiofrittoli/react-api/utils'
const somefunction = ( Component: React.ComponentType | React.ReactNode ) => {
if ( isReactNode( Component ) ) {
return <>{ Component }</>
}
return (
<Component />
)
}
childrenFnRender children which could be possible a callable function.
| Parameter | Default | Description |
|---|---|---|
T | FunctionChildren<U> | The children type which extends the FunctionChildren<U> interface. |
U | unknown[] | An Array defining optional arguments passed to the children function. |
| Parameter | Type | Description |
|---|---|---|
children | T | The children to render. |
args | U | (Optional) Arguments passed to children if is a function. |
Type: React.ReactNode
The rendered children. If children is a function, the result of that function is returned.
FunctionChildren'use client'
import { useState } from 'react'
import { childrenFn, type FunctionChildren } from '@alessiofrittoli/react-api'
// or
import { childrenFn, type FunctionChildren } from '@alessiofrittoli/react-api/utils'
interface ComponentProps
{
children?: FunctionChildren<[ state: boolean ]>
}
const Component: React.FC<ComponentProps> = ( { children } ) => {
const [ state, setState ] = useState( false )
return (
<div>
{ childrenFn( children, state ) }
</dib>
)
}
FunctionChildren'use client'
const Component2: React.FC<ComponentProps> = () => {
return (
<div>
<Component>
{ ( state ) => {
return (
<div>children has access to `state` - { state }</div>
)
} }
</Component>
{/* multiple children accepted too */}
<Component>
{ ( state ) => {
return (
<div>children has access to `state` - { state }</div>
)
} }
{ ( state ) => {
return (
<div>multiple children are accepted too</div>
)
} }
<div>Another React.JSX.Element</div>
</Component>
</div>
)
}
npm install
or using pnpm
pnpm i
Run the following command to test and build code for distribution.
pnpm build
warnings / errors check.
pnpm lint
Run all the defined test suites by running the following:
# Run tests and watch file changes.
pnpm test:watch
# Run tests in a CI environment.
pnpm test:ci
package.json file scripts for more info.Run tests with coverage.
An HTTP server is then started to serve coverage files from ./coverage folder.
⚠️ You may see a blank page the first time you run this command. Simply refresh the browser to see the updates.
test:coverage:serve
Contributions are truly welcome!
Please refer to the Contributing Doc for more information on how to start contributing to this project.
Help keep this project up to date with GitHub Sponsor.
If you believe you have found a security vulnerability, we encourage you to responsibly disclose this and NOT open a public issue. We will investigate all legitimate reports. Email security@alessiofrittoli.it to disclose any security vulnerabilities.
|
|
|
FAQs
TypeScript React API utilities
The npm package @alessiofrittoli/react-api receives a total of 2 weekly downloads. As such, @alessiofrittoli/react-api popularity was classified as not popular.
We found that @alessiofrittoli/react-api demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Another wave of Shai-Hulud campaign has hit npm with more than 500 packages and 700+ versions affected.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.