This package has been deprecated

Author message:

Deprecated

website-popup

3.0.0 • Public • Published

website-popup

Open a website in a popup (macOS)

Install

$ npm install --save website-popup

Usage

const websitePopup = require('website-popup');
const url = 'https://sindresorhus.com';

websitePopup(url, {width: 600, height: 400}).then(() => {
	// closed
});

const close = websitePopup(url);
setTimeout(close, 2000);

API

websitePopup(url, [options])

Returns a Promise-like method to close the popup.

url

Type: string

URL to open.

options

width

Type: number
Default: 1280

Width of the popup.

height

Type: number
Default: 1024

Height of the popup.

Related

License

MIT © Sindre Sorhus

Package Sidebar

Install

npm i website-popup

Weekly Downloads

2

Version

3.0.0

License

MIT

Unpacked Size

4.35 kB

Total Files

5

Last publish

Collaborators

  • sindresorhus