Socket
Socket
Sign inDemoInstall

node-iframe

Package Overview
Dependencies
Maintainers
1
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-iframe

create a iframe on your server to bypass cors issues. ( reverse engineer security issues )


Version published
Weekly downloads
152
decreased by-45.13%
Maintainers
1
Weekly downloads
 
Created
Source

Node iframe

create iframes to bypass security issues on your server with node js

Installation

yarn install node-iframe

How to use

On your server

const createIframe = require("node-iframe");

app.use(createIframe);

app.get("/iframe", (req, res) =>
  res.createIframe({
    url: req.query.url,
    baseHref: req.query.baseHref || true
  })
);

On the client use directly in your iframe if your api is on the same server set the url below like this or if your using a framework like gatsby, nextjs, etc

<iframe src="/iframe/?url=https://www.etsy.com" />

You can even fetch the iframe directly on the content if needed.

async function fetchIframe() {
  const iframe = await fetch("/iframe/?url=https://www.etsy.com");
  return iframe;
}

Example Render

Screenshot above is an example image of the package used at link to A11ywatch

Params

Node iframe has one param Object with a url prop that is the url of the website and baseHref is optional property that will inject crossorigin="anonymous" onto all your script tags.

About

This project uses cheerio to manipulate dom contents very fast. If your iframe fails to render thats where the security issues need to be reverse hacked by us for the bypass. As an alternative solution if the frame fails to load simply fall back to the normal source of your content. You can fire this as an api request directly with fetch to get the website as html or use directly as your iframe src for best perfomance.

Keywords

FAQs

Package last updated on 06 Feb 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc