πŸš€ Socket Launch Week πŸš€ Day 4: Introducing Historical Analytics.Learn More β†’
Socket
Sign inDemoInstall
Socket

@deephaven/file-explorer

Package Overview
Dependencies
Maintainers
8
Versions
885
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

0.107.2
latest
Source
npm
Version published
Weekly downloads
638
-14.59%
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 21 Apr 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