
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@businessflow/reviews
Advanced tools
Generic review and testimonial management utilities with customizable display components
Generic review and testimonial management utilities for React and NextJS applications.
npm install @businessflow/reviews
// app/api/reviews/featured/route.ts
import { createReviewHandler } from '@businessflow/reviews/server';
export const GET = createReviewHandler({
onFetch: async (params) => {
// Fetch from your database/API
const reviews = await fetchReviewsFromDB({
limit: params?.limit || 10,
featured: true
});
return reviews;
}
});
// app/api/reviews/submit/route.ts
export const POST = createReviewHandler({
onSubmit: async (data) => {
// Save to your database/API
const result = await saveReviewToDB(data);
return {
success: !!result.id,
reviewId: result.id,
message: 'Review submitted successfully'
};
},
recaptcha: {
secretKey: process.env.RECAPTCHA_SECRET_KEY!
}
});
import { TestimonialsSection } from '@businessflow/reviews/react';
export default function HomePage() {
return (
<TestimonialsSection
limit={6}
layout="grid"
showRating={true}
autoRefresh={true}
/>
);
}
import { ReviewForm } from '@businessflow/reviews/react';
export default function ReviewPage() {
return (
<ReviewForm
recaptcha={{ siteKey: process.env.NEXT_PUBLIC_RECAPTCHA_SITE_KEY! }}
onSuccess={(response) => console.log('Review submitted!', response)}
/>
);
}
MIT
FAQs
Generic review and testimonial management utilities with customizable display components
We found that @businessflow/reviews 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.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.