select-files-capture
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

selectFiles

Build Status License Library minified size Library minified + gzipped size

Virtually creates a file input element (<input type="file" />), triggers it and returns selected files.

import selectFiles from 'select-files';

selectFiles({ accept: 'image/*', capture: 'camera' }).then(files => {
  // ...
});

Installation

This library is published in the NPM registry and can be installed using any compatible package manager.

npm install select-files --save

# For Yarn, use the command below.
yarn add select-files

Installation from CDN

This module has an UMD bundle available through JSDelivr and Unpkg CDNs.

<!-- For UNPKG use the code below. -->
<script src="https://unpkg.com/select-files"></script>

<!-- For JSDelivr use the code below. -->
<script src="https://cdn.jsdelivr.net/npm/select-files"></script>

<script>
  // UMD module is exposed through the "selectFiles" global function.
  selectFiles({ multiple: true }).then(files => {
    console.log(files);
  });
</script>

Documentation

Documentation generated from source files by Typedoc.

License

Released under MIT License.

/select-files-capture/

    Package Sidebar

    Install

    npm i select-files-capture

    Weekly Downloads

    6

    Version

    1.0.2

    License

    MIT

    Unpacked Size

    20.9 kB

    Total Files

    26

    Last publish

    Collaborators

    • weltmx