Skip to content
Tauri
Releases

@tauri-apps/plugin-shell

Access the system shell. Allows you to spawn child processes and manage files and URLs using their default application.

Security

This API has a scope configuration that forces you to restrict the programs and arguments that can be used.

Restricting access to the open API

On the configuration object, open: true means that the open API can be used with any URL, as the argument is validated with the ^((mailto:\w+)|(tel:\w+)|(https?://\w+)).+ regex. You can change that regex by changing the boolean value to a string, e.g. open: ^https://github.com/.

Restricting access to the Command APIs

The plugin configuration object has a scope field that defines an array of CLIs that can be used. Each CLI is a configuration object { name: string, cmd: string, sidecar?: bool, args?: boolean | Arg[] }.

  • name: the unique identifier of the command, passed to the Command.create function. If it’s a sidecar, this must be the value defined on tauri.conf.json > tauri > bundle > externalBin.
  • cmd: the program that is executed on this configuration. If it’s a sidecar, this value is ignored.
  • sidecar: whether the object configures a sidecar or a system program.
  • args: the arguments that can be passed to the program. By default no arguments are allowed.
    • true means that any argument list is allowed.
    • false means that no arguments are allowed.
    • otherwise an array can be configured. Each item is either a string representing the fixed argument value or a { validator: string } that defines a regex validating the argument value.

Example scope configuration

CLI: git commit -m "the commit message"

Configuration:

{
"plugins": {
"shell": {
"scope": [
{
"name": "run-git-commit",
"cmd": "git",
"args": ["commit", "-m", { "validator": "\\S+" }]
}
]
}
}
}

Usage:

import { Command } from '@tauri-apps/plugin-shell';
Command.create('run-git-commit', ['commit', '-m', 'the commit message']);

Trying to execute any API with a program not configured on the scope results in a promise rejection due to denied access.

Classes

Child

Since

2.0.0

Constructors

constructor()
new Child(pid): Child
Parameters
ParameterType
pidnumber
Returns

Child

Source: index.ts:335

Properties

PropertyTypeDescription
pidnumberThe child process pid.

Methods

kill()
kill(): Promise< void >

Kills the child process.

Since

2.0.0

Returns

Promise< void >

A promise indicating the success or failure of the operation.

Source: index.ts:371


write()
write(data): Promise< void >

Writes data to the stdin.

Example
import { Command } from '@tauri-apps/plugin-shell';
const command = Command.create('node');
const child = await command.spawn();
await child.write('message');
await child.write([0, 1, 2, 3, 4, 5]);
Since

2.0.0

Parameters
ParameterTypeDescription
dataIOPayloadThe message to write, either a string or a byte array.
Returns

Promise< void >

A promise indicating the success or failure of the operation.

Source: index.ts:356


Command

The entry point for spawning child processes. It emits the close and error events.

Example

import { Command } from '@tauri-apps/plugin-shell';
const command = Command.create('node');
command.on('close', (data) => {
console.log(`command finished with code ${data.code} and signal ${data.signal}`);
});
command.on('error', (error) => console.error(`command error: "${error}"`));
command.stdout.on('data', (line) => console.log(`command stdout: "${line}"`));
command.stderr.on('data', (line) => console.log(`command stderr: "${line}"`));
const child = await command.spawn();
console.log('pid:', child.pid);

Since

2.0.0

Extends

Type parameters

Parameter
O extends IOPayload

Properties

PropertyTypeDescription
readonly stderrEventEmitter< OutputEvents< O > >Event emitter for the stderr. Emits the data event.
readonly stdoutEventEmitter< OutputEvents< O > >Event emitter for the stdout. Emits the data event.

Methods

addListener()
addListener<N>(eventName, listener): this

Alias for emitter.on(eventName, listener).

Since

2.0.0

Type parameters
Parameter
N extends keyof CommandEvents
Parameters
ParameterType
eventNameN
listener(arg) => void
Returns

this

Inherited from

EventEmitter.addListener

Source: index.ts:150


execute()
execute(): Promise< ChildProcess< O > >

Executes the command as a child process, waiting for it to finish and collecting all of its output.

Example
import { Command } from '@tauri-apps/plugin-shell';
const output = await Command.create('echo', 'message').execute();
assert(output.code === 0);
assert(output.signal === null);
assert(output.stdout === 'message');
assert(output.stderr === '');
Since

2.0.0

Returns

Promise< ChildProcess< O > >

A promise resolving to the child process output.

Source: index.ts:554


listenerCount()
listenerCount<N>(eventName): number

Returns the number of listeners listening to the event named eventName.

Since

2.0.0

Type parameters
Parameter
N extends keyof CommandEvents
Parameters
ParameterType
eventNameN
Returns

number

Inherited from

EventEmitter.listenerCount

Source: index.ts:275


off()
off<N>(eventName, listener): this

Removes the all specified listener from the listener array for the event eventName Returns a reference to the EventEmitter, so that calls can be chained.

Since

2.0.0

Type parameters
Parameter
N extends keyof CommandEvents
Parameters
ParameterType
eventNameN
listener(arg) => void
Returns

this

Inherited from

EventEmitter.off

Source: index.ts:219


on()
on<N>(eventName, listener): this

Adds the listener function to the end of the listeners array for the event named eventName. No checks are made to see if the listener has already been added. Multiple calls passing the same combination of eventNameand listener will result in the listener being added, and called, multiple times.

Returns a reference to the EventEmitter, so that calls can be chained.

Since

2.0.0

Type parameters
Parameter
N extends keyof CommandEvents
Parameters
ParameterType
eventNameN
listener(arg) => void
Returns

this

Inherited from

EventEmitter.on

Source: index.ts:179


once()
once<N>(eventName, listener): this

Adds a one-timelistener function for the event named eventName. The next time eventName is triggered, this listener is removed and then invoked.

Returns a reference to the EventEmitter, so that calls can be chained.

Since

2.0.0

Type parameters
Parameter
N extends keyof CommandEvents
Parameters
ParameterType
eventNameN
listener(arg) => void
Returns

this

Inherited from

EventEmitter.once

Source: index.ts:201


prependListener()
prependListener<N>(eventName, listener): this

Adds the listener function to the beginning of the listeners array for the event named eventName. No checks are made to see if the listener has already been added. Multiple calls passing the same combination of eventNameand listener will result in the listener being added, and called, multiple times.

Returns a reference to the EventEmitter, so that calls can be chained.

Since

2.0.0

Type parameters
Parameter
N extends keyof CommandEvents
Parameters
ParameterType
eventNameN
listener(arg) => void
Returns

this

Inherited from

EventEmitter.prependListener

Source: index.ts:292


prependOnceListener()
prependOnceListener<N>(eventName, listener): this

Adds a one-timelistener function for the event named eventName to thebeginning of the listeners array. The next time eventName is triggered, this listener is removed, and then invoked.

Returns a reference to the EventEmitter, so that calls can be chained.

Since

2.0.0

Type parameters
Parameter
N extends keyof CommandEvents
Parameters
ParameterType
eventNameN
listener(arg) => void
Returns

this

Inherited from

EventEmitter.prependOnceListener

Source: index.ts:314


removeAllListeners()
removeAllListeners<N>(event?): this

Removes all listeners, or those of the specified eventName.

Returns a reference to the EventEmitter, so that calls can be chained.

Since

2.0.0

Type parameters
Parameter
N extends keyof CommandEvents
Parameters
ParameterType
event?N
Returns

this

Inherited from

EventEmitter.removeAllListeners

Source: index.ts:239


removeListener()
removeListener<N>(eventName, listener): this

Alias for emitter.off(eventName, listener).

Since

2.0.0

Type parameters
Parameter
N extends keyof CommandEvents
Parameters
ParameterType
eventNameN
listener(arg) => void
Returns

this

Inherited from

EventEmitter.removeListener

Source: index.ts:162


spawn()
spawn(): Promise< Child >

Executes the command as a child process, returning a handle to it.

Since

2.0.0

Returns

Promise< Child >

A promise resolving to the child process handle.

Source: index.ts:514


create()
static create(program, args?): Command< string >

Creates a command to execute the given program.

Example
import { Command } from '@tauri-apps/plugin-shell';
const command = Command.create('my-app', ['run', 'tauri']);
const output = await command.execute();
Parameters
ParameterTypeDescription
programstringThe program to execute.
It must be configured on tauri.conf.json > plugins > shell > scope.
args?string | string[]-
Returns

Command< string >

Source: index.ts:441

static create(
program,
args?,
options?): Command< Uint8Array >

Creates a command to execute the given program.

Example
import { Command } from '@tauri-apps/plugin-shell';
const command = Command.create('my-app', ['run', 'tauri']);
const output = await command.execute();
Parameters
ParameterTypeDescription
programstringThe program to execute.
It must be configured on tauri.conf.json > plugins > shell > scope.
args?string | string[]-
options?SpawnOptions & {encoding: "raw";}-
Returns

Command< Uint8Array >

Source: index.ts:442

static create(
program,
args?,
options?): Command< string >

Creates a command to execute the given program.

Example
import { Command } from '@tauri-apps/plugin-shell';
const command = Command.create('my-app', ['run', 'tauri']);
const output = await command.execute();
Parameters
ParameterTypeDescription
programstringThe program to execute.
It must be configured on tauri.conf.json > plugins > shell > scope.
args?string | string[]-
options?SpawnOptions-
Returns

Command< string >

Source: index.ts:447


sidecar()
static sidecar(program, args?): Command< string >

Creates a command to execute the given sidecar program.

Example
import { Command } from '@tauri-apps/plugin-shell';
const command = Command.sidecar('my-sidecar');
const output = await command.execute();
Parameters
ParameterTypeDescription
programstringThe program to execute.
It must be configured on tauri.conf.json > plugins > shell > scope.
args?string | string[]-
Returns

Command< string >

Source: index.ts:473

static sidecar(
program,
args?,
options?): Command< Uint8Array >

Creates a command to execute the given sidecar program.

Example
import { Command } from '@tauri-apps/plugin-shell';
const command = Command.sidecar('my-sidecar');
const output = await command.execute();
Parameters
ParameterTypeDescription
programstringThe program to execute.
It must be configured on tauri.conf.json > plugins > shell > scope.
args?string | string[]-
options?SpawnOptions & {encoding: "raw";}-
Returns

Command< Uint8Array >

Source: index.ts:474

static sidecar(
program,
args?,
options?): Command< string >

Creates a command to execute the given sidecar program.

Example
import { Command } from '@tauri-apps/plugin-shell';
const command = Command.sidecar('my-sidecar');
const output = await command.execute();
Parameters
ParameterTypeDescription
programstringThe program to execute.
It must be configured on tauri.conf.json > plugins > shell > scope.
args?string | string[]-
options?SpawnOptions-
Returns

Command< string >

Source: index.ts:479


EventEmitter

Since

2.0.0

Extended By

Type parameters

Parameter
E extends Record< string, any >

Constructors

constructor()
new EventEmitter<E>(): EventEmitter< E >
Type parameters
Parameter
E extends Record< string, any >
Returns

EventEmitter< E >

Methods

addListener()
addListener<N>(eventName, listener): this

Alias for emitter.on(eventName, listener).

Since

2.0.0

Type parameters
Parameter
N extends string | number | symbol
Parameters
ParameterType
eventNameN
listener(arg) => void
Returns

this

Source: index.ts:150


listenerCount()
listenerCount<N>(eventName): number

Returns the number of listeners listening to the event named eventName.

Since

2.0.0

Type parameters
Parameter
N extends string | number | symbol
Parameters
ParameterType
eventNameN
Returns

number

Source: index.ts:275


off()
off<N>(eventName, listener): this

Removes the all specified listener from the listener array for the event eventName Returns a reference to the EventEmitter, so that calls can be chained.

Since

2.0.0

Type parameters
Parameter
N extends string | number | symbol
Parameters
ParameterType
eventNameN
listener(arg) => void
Returns

this

Source: index.ts:219


on()
on<N>(eventName, listener): this

Adds the listener function to the end of the listeners array for the event named eventName. No checks are made to see if the listener has already been added. Multiple calls passing the same combination of eventNameand listener will result in the listener being added, and called, multiple times.

Returns a reference to the EventEmitter, so that calls can be chained.

Since

2.0.0

Type parameters
Parameter
N extends string | number | symbol
Parameters
ParameterType
eventNameN
listener(arg) => void
Returns

this

Source: index.ts:179


once()
once<N>(eventName, listener): this

Adds a one-timelistener function for the event named eventName. The next time eventName is triggered, this listener is removed and then invoked.

Returns a reference to the EventEmitter, so that calls can be chained.

Since

2.0.0

Type parameters
Parameter
N extends string | number | symbol
Parameters
ParameterType
eventNameN
listener(arg) => void
Returns

this

Source: index.ts:201


prependListener()
prependListener<N>(eventName, listener): this

Adds the listener function to the beginning of the listeners array for the event named eventName. No checks are made to see if the listener has already been added. Multiple calls passing the same combination of eventNameand listener will result in the listener being added, and called, multiple times.

Returns a reference to the EventEmitter, so that calls can be chained.

Since

2.0.0

Type parameters
Parameter
N extends string | number | symbol
Parameters
ParameterType
eventNameN
listener(arg) => void
Returns

this

Source: index.ts:292


prependOnceListener()
prependOnceListener<N>(eventName, listener): this

Adds a one-timelistener function for the event named eventName to thebeginning of the listeners array. The next time eventName is triggered, this listener is removed, and then invoked.

Returns a reference to the EventEmitter, so that calls can be chained.

Since

2.0.0

Type parameters
Parameter
N extends string | number | symbol
Parameters
ParameterType
eventNameN
listener(arg) => void
Returns

this

Source: index.ts:314


removeAllListeners()
removeAllListeners<N>(event?): this

Removes all listeners, or those of the specified eventName.

Returns a reference to the EventEmitter, so that calls can be chained.

Since

2.0.0

Type parameters
Parameter
N extends string | number | symbol
Parameters
ParameterType
event?N
Returns

this

Source: index.ts:239


removeListener()
removeListener<N>(eventName, listener): this

Alias for emitter.off(eventName, listener).

Since

2.0.0

Type parameters
Parameter
N extends string | number | symbol
Parameters
ParameterType
eventNameN
listener(arg) => void
Returns

this

Source: index.ts:162

Interfaces

ChildProcess

Since

2.0.0

Type parameters

Parameter
O extends IOPayload

Properties

PropertyTypeDescription
codenull | numberExit code of the process. null if the process was terminated by a signal on Unix.
signalnull | numberIf the process was terminated by a signal, represents that signal.
stderrOThe data that the process wrote to stderr.
stdoutOThe data that the process wrote to stdout.

CommandEvents

Properties

PropertyType
closeTerminatedPayload
errorstring

OutputEvents

Type parameters

Parameter
O extends IOPayload

Properties

PropertyType
dataO

SpawnOptions

Since

2.0.0

Properties

PropertyTypeDescription
cwd?stringCurrent working directory.
encoding?stringCharacter encoding for stdout/stderr

Since

2.0.0
env?Record< string, string >Environment variables. set to null to clear the process env.

TerminatedPayload

Payload for the Terminated command event.

Properties

PropertyTypeDescription
codenull | numberExit code of the process. null if the process was terminated by a signal on Unix.
signalnull | numberIf the process was terminated by a signal, represents that signal.

Type Aliases

IOPayload

IOPayload: string | Uint8Array;

Event payload type

Source: index.ts:611

Functions

open()

open(path, openWith?): Promise< void >

Opens a path or URL with the system’s default app, or the one specified with openWith.

The openWith value must be one of firefox, google chrome, chromium safari, open, start, xdg-open, gio, gnome-open, kde-open or wslview.

Example

import { open } from '@tauri-apps/plugin-shell';
// opens the given URL on the default browser:
await open('https://github.com/tauri-apps/tauri');
// opens the given URL using `firefox`:
await open('https://github.com/tauri-apps/tauri', 'firefox');
// opens a file using the default program:
await open('/path/to/file');

Since

2.0.0

Parameters

ParameterTypeDescription
pathstringThe path or URL to open.
This value is matched against the string regex defined on tauri.conf.json > plugins > shell > open,
which defaults to ^((mailto:\w+)|(tel:\w+)|(https?://\w+)).+.
openWith?stringThe app to open the file or URL with.
Defaults to the system default application for the specified path type.

Returns

Promise< void >

Source: index.ts:646


© 2024 Tauri Contributors. CC-BY / MIT