npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

react-secure-frame

v1.2.0

Published

[![npm version](https://badge.fury.io/js/react-secure-frame.svg)](https://badge.fury.io/js/react-secure-frame) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Downloads

12

Readme

react-secure-frame

npm version License: MIT

A secure, rate-limited iframe component for React applications that prevents unwanted navigation and enforces usage limits.

Features

Rate Limiting - Prevent excessive reloads
Navigation Lock - Only specified URL remains visible
Sandboxed - Enhanced security with customizable policies
Responsive - Adapts to container size
Type Checking - PropTypes validation

Installation

npm install react-secure-frame prop-types
# or
yarn add react-secure-frame prop-types

Basic Usage

import { SecureFrame } from 'react-secure-frame';

function App() {
  return (
    <SecureFrame
      url="https://example.com"
      title="Secure Content Viewer"
      height="500px"
    />
  );
}

Advanced Props

| Prop | Type | Default | Description | |------|------|---------|-------------| | url | string | required | URL to display in iframe | | title | string | required | Accessibility title | | width | string/number | '100%' | Iframe width | | height | string/number | '500px' | Iframe height | | rateLimit | number | 5 | Max reloads per time window | | rateLimitWindow | number | 60000 (1 min) | Rate limit window in ms | | sandbox | string | 'allow-scripts allow-forms' | Sandbox permissions | | className | string | '' | Additional CSS class | | style | object | {} | Inline styles |

Security Configuration

Customize sandbox attributes for your security needs:

<SecureFrame
  url="https://example.com"
  title="Secure Content"
  sandbox="allow-same-origin allow-scripts"
/>

Rate Limiting Example

<SecureFrame
  url="https://example.com"
  title="Rate Limited Content"
  rateLimit={10}          // 10 reloads max
  rateLimitWindow={30000} // 30 second window
/>

Handling Blocked Content

When rate limits are exceeded, users will see:

  • A friendly message (customizable via CSS)
  • Automatic reset after the rate limit window expires

Styling

Import the default styles or provide your own:

/* Custom styling example */
.secure-frame-blocked {
  background: #ffe6e6;
  border: 1px solid #ff9999;
  padding: 20px;
  text-align: center;
}

Best Practices

  1. Always set a title for accessibility
  2. Use strict sandbox policies when possible
  3. Monitor rate limits in high-traffic applications
  4. Combine with CSP headers for additional security

Development

git clone https://github.com/your-repo/react-secure-frame.git
cd react-secure-frame
npm install
npm run build

License

MIT © [Nuvo AI Pvt Ltd]