3.0.3 • Published 3 months ago

@sap-devx/inquirer-gui-folder-browser-plugin v3.0.3

Weekly downloads
1,088
License
Apache-2.0
Repository
github
Last release
3 months ago

Folder Browser Plugin for Inquirer-gui

This inquirer-gui plugin enables selecting a folder from a backend.

Inquirer-gui Folder-Browser

It can be used in Visual Studio Code when working locally or in remote development or in Theia.

See the sample-vscode-extension for useage.

Sample Question

      {
        type: "input",
        guiOptions: {
              type: "folder-browser",
        },
        name: "dump",
        message: "Choose dump folder",
        default: "/",
        getPath: async function (currentPath) {
              return `${currentPath}subfolder/`;
        }
      },