Skip to content

bavoco/deno-open

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

open for Deno

open is a package for opening URLs, files and executables. Inspired by open

Features

  • Really simple usage
  • App arguments
  • Includes xdg-open script
Download

Usage

import { open } from 'https://deno.land/x/open/index.ts';

// Opens the image in the default image viewer and waits for the opened app to quit.
await open('image.png', {wait: true});

// Opens the URL in the default browser.
await open('https://google.com');

// Opens the URL in a specified browser.
await open('https://google.com', {app: 'firefox'});

// Specify app arguments.
await open('https://google.com', {app: ['google chrome', '--incognito']});

⚠ Note: on Windows, if you have search parameters in your URL, you need need to wrap the & char in quote marks. See #9

API

It uses the command open on macOS, start on Windows and xdg-open on other platforms.

open(target, options?)

Returns a promise for the spawned Deno process.

target: string

The URL, file or executable you want to open.

options: OpenOptions (Optional)

wait: boolean

Waits for the spawned process to end, before resolving the Promise.

background: boolean (macOS only)

Opens the app in the background.

app: string | string[]

Specify the app you want to open the target with.

url: boolean

Encodes target with encodeURI. Useful for opening URLs.

Note: on Windows, if you have search parameters in your URL, you need need to wrap the & char in quote marks. See #9

About

Open is a package for opening URLs, files and executables with Deno. Inspired by sindresorhus' open.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 78.6%
  • TypeScript 21.4%