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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@wiptheia/task

v0.3.101529329103

Published

Theia - Task extension. This extension adds support for executing raw or terminal processes in the backend.

Downloads

29

Readme

Theia - Task Extension

This extension permits executing scripts or binaries in Theia's backend.

Tasks launch configurations can be defined independently for each workspace, under .theia/tasks.json. When present, they are automatically picked-up when a client opens a workspace, and watches for changes. A task can be executed by triggering the "Run Task" command (shortcut F1). A list of known tasks will then be available, one of which can be selected to trigger execution.

Each task configuration looks like this:

     {
        "label": "Test task - list workspace files recursively",
        "processType": "terminal",
        "cwd": "${workspaceFolder}",
        "processOptions": {
            "command": "ls",
            "args": [
                "-alR"
            ]
        },
        "windowsProcessOptions": {
            "command": "cmd.exe",
            "args": [
                "/c",
                "dir",
                "/s"
            ]
       }
    }

label: A unique string that identifies the task. That's what's shown to the user, when it's time to chose one task configuration to run.

processType: Determines what type of process will be used to execute the task. Can be "raw" or "terminal". Terminal processes can be shown in Theia's frontend, in a terminal widget. Raw processes are run without their output being shown.

cwd: The current working directory, in which the task's command will execute. This is the equivalent of doing a "cd" to that directory, on the command-line, before running the command. This can contain the variable ${workspaceFolder}, which will be replaced at execution time by the path of the current workspace. If left undefined, will by default be set to workspace root.

processOptions.command: the actual command or script to execute. The command can have no path (e.g. "ls") if it can be found in the system path. Else it can have an absolute path, in which case there is no confusion. Or it can have a relative path, in which case it will be interpreted to be relative to cwd. e.g. "./task" would be interpreted to mean a script or binary called "task", right under the workspace root directory.

processOptions.args: a list of strings, each one being one argument to pass to the command.

windowsProcessOptions: By default, processOptions above is used on all platforms. However it's not always possible to express a task in the same way, both on Unix and Windows. The command and/or arguments may be different, for example. If a task needs to work on both Linux/MacOS and Windows, it can be better to have two separate process options. If windowsProcessOptions is defined, it will be used instead of processOptions, when a task is executed on a Windows backend.

Here is a sample tasks.json that can be used to test tasks. Just add this content under the theia source directory, in directory .theia:

{
    // Some sample Theia tasks
    "tasks": [
        {
            "label": "[Task] short running test task (~3s)",
            "processType": "terminal",
            "cwd": "${workspaceFolder}/packages/task/src/node/test-resources/",
            "processOptions": {
                "command": "./task",
                "args": [
                    "1",
                    "2",
                    "3"
                ]
            },
            "windowsProcessOptions": {
                "command": "cmd.exe",
                "args": [
                    "/c",
                    "task.bat",
                    "abc"
                ]
            }
        },
        {
            "label": "[Task] long running test task (~300s)",
            "processType": "terminal",
            "cwd": "${workspaceFolder}/packages/task/src/node/test-resources/",
            "processOptions": {
                "command": "./task-long-running",
                "args": []
            },
            "windowsProcessOptions": {
                "command": "cmd.exe",
                "args": [
                    "/c",
                    "task-long-running.bat"
                ]
            }
        },
        {
            "label": "[Task] recursively list files from workspace root",
            "processType": "terminal",
            "cwd": "${workspaceFolder}",
            "processOptions": {
                "command": "ls",
                "args": [
                    "-alR"
                ]
            },
            "windowsProcessOptions": {
                "command": "cmd.exe",
                "args": [
                    "/c",
                    "dir",
                    "/s"
                ]
            }
        },
        {
            "label": "[Task] Echo a string",
            "processType": "terminal",
            "cwd": "${workspaceFolder}",
            "processOptions": {
                "command": "bash",
                "args": [
                    "-c",
                    "echo 1 2 3"
                ]
            }
        }
    ]
}

Variables

The variables are supported in the following properties, using ${variableName} syntax:

  • cwd
  • processOptions.command
  • processOptions.args
  • windowsProcessOptions.command
  • windowsProcessOptions.args

See here for other Theia documentation.

License

Apache-2.0