Coder Social home page Coder Social logo

browser-nativefs's Introduction

Browser-NativeFS

This module allows you to either use the Native File System API on supporting browsers, with a transparent fallback to the <input type="file"> and <a download> legacy methods.

Usage

The module feature-detects support for the Native File System API and only loads the actually relevant code.

import {
  fileOpenPromise,
  fileSavePromise,
} from 'https://unpkg.com/browser-nativefs';

(async () => {
  // This dynamically either loads the Native File System API
  // or the legacy module.
  const fileOpen = (await fileOpenPromise).default;
  const fileSave = (await fileSavePromise).default;

  // Open a file.
  const blob = await fileOpen({mimeTypes: ['image/*']});
  // Open multiple files
  const blobs = await fileOpen({mimeTypes: ['image/*'], multiple: true});
  // Save a file.
  await fileSave(blob, {fileName: 'Untitled.png'});
})();

API

const options = {
  mimeTypes: ['image/*'],
  extensions: ['png', 'jpg', 'jpeg', 'webp'],
  multiple: true,
  description: 'Image files',
};
const blobs = await fileOpen(options);
const options = {
  fileName: 'Untitled.txt',
};
await fileSave(someBlob, options);

License

Apache 2.0.

browser-nativefs's People

Contributors

tomayac avatar

Stargazers

 avatar Lúcio Caetano avatar  avatar Sebastian L. avatar Dominik Pschenitschni avatar sonopictorial avatar Rodrigo Fernandes avatar Acampbell avatar

Watchers

James Cloos avatar  avatar

Forkers

doc22940

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.