Filestack Picker Plugins
Table of Contents
- Google File Picker Plugin [https://github.com/filestack/picker-plugins/tree/develop/packages/google-file-picker]
- Example Picker Plugin [https://github.com/filestack/picker-plugins/tree/develop/packages/example]
Subresource Integrity (SRI) is a security feature that enables browsers to verify that files they fetch (for example, from a CDN) are delivered without unexpected manipulation. It works by allowing you to provide a cryptographic hash that a fetched file must match
To obtain sri hashes for filestack-js library check manifest.json file on CDN:
https://static.filestackapi.com/picker-plugins/{PLUGIN_NAME}/{LIBRARY_VERSION}/manifest.json
<script src="//static.filestackapi.com/picker-plugins/{PLUGIN_NAME}/{LIBRARY_VERSION}/{PLUGIN_NAME}.js" integrity="{FILE_HASH}" crossorigin="anonymous"></script>
Where {LIBRARY_VERSION}
is currently used library version and {FILE_HASH}
is one of the hashes from integrity field in manifest.json file
Major releases will bo listed (with detailed examples) in releases folder starting from version 3.0.0
Filestack-js uses debug
, so just run with environmental variable DEBUG
set to fs.*
.
DEBUG=fs.* node example_upload.js
Debug's enable state is persisted by localStorage
localStorage.debug = 'fs:*'
And then refresh the page.
We use SemVer for versioning. For the versions available, see the tags on this repository.
We follow the conventional commits specification to ensure consistent commit messages and changelog formatting.