Socket
Book a DemoInstallSign in
Socket

@deephaven/file-explorer

Package Overview
Dependencies
Maintainers
8
Versions
975
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@deephaven/file-explorer

Deephaven File Explorer React component

latest
Source
npmnpm
Version
1.5.3
Version published
Weekly downloads
360
68.22%
Maintainers
8
Weekly downloads
 
Created
Source

@deephaven/file-explorer

React component for browsing a file explorer server. Implementation must be provided.

Install

npm install --save @deephaven/file-explorer

Usage

import React, { Component } from 'react';
import FileExplorer, { FileStorage } from '@deephaven/file-explorer';

class MyFileStorage implements FileStorage {
  // Must implement all menthods...
}

const storage = new MyFileStorage();

class Example extends Component {
  render() {
    return (
      <FileExplorer
        storage={storage}
        onSelect={item => console.log('Item selected', item)}
      />
    );
  }
}

Deephaven Data Labs and any contributors grant you a license to the content of this repository under the Apache 2.0 License, see the LICENSE file.

FAQs

Package last updated on 10 Sep 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts