![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
filerobot-uploader
Advanced tools
Plugin to upload images.
Use latest CDNized plugin version
<script src="https://js.filerobot.com/airstore-uploader.last.js"></script>
We provide easy way to integrate image uploader in your applications
<script>
let options = {
container: 'example',
filerobotUploadKey: '0cbe9ccc4f164bf8be26bd801d53b132',
openpixKey: 'xxxxxxxxxxxxxxx',
onUpload: (files) => {
console.log('files: ', files);
alert('Files uploaded successfully! check the console to see the uploaded files');
}
};
let uploader = FilerobotUploader.init(options);
uploader.open();
</script>
window.FilerobotUploader.init(options: {})
: functionInitialization of Filerobot Uploader plugin.
window.FilerobotUploader.open(tab : string, options: {})
: functionOpen uploader modal.
tab: string (optional, default: 'UPLOAD') - allow to choose the initial tab (should be one of enabled modules)
options: {} (optional) - options for tabs
window.FilerobotUploader.close()
: functionClose uploader modal.
window.FilerobotUploader.unmount()
: functionDestroy uploader
in progress
container
: string (required)Filerobot Container name.
let options = {
...,
container: 'example'
};
filerobotUploadKey
: string (required)Unique upload key for Filerobot.
let options = {
...,
filerobotUploadKey: 'xxxxxxxxxxxx'
};
openpixKey
: string (required)Key for Openpix. Required if you are using "ICONS_GALLERY", "IMAGES_GALLERY"
let options = {
...,
openpixKey: 'xxxxxxxxxxxx'
};
language
: stringdefault: 'en'
Language of uploader
available languages: en, fr, de, ru
let options = {
...,
language: 'en'
};
modules
: string[]default: ["UPLOAD", "MY_GALLERY", "ICONS_GALLERY", "IMAGES_GALLERY"]
Modules (tabs) in file uploader modal.
Available modules: UPLOAD, MY_GALLERY, ICONS_GALLERY, IMAGES_GALLERY, TAGGING
let options = {
...,
modules: ['UPLOAD', 'ICONS_GALLERY', 'TAGGING']
};
uploadParams
: objectlet options = {
...,
uploadParams: {
dir: '/folder_name',
...
}
};
initialTab
: stringdefault: 'UPLOAD'
Allow to choose the initial tab. Should be one of enabled modules.
let options = {
...,
initialTab: 'UPLOAD'
};
folderBrowser
: booldefault: true
Aside menu to browse folders in your container.
let options = {
...,
folderBrowser: true
};
tagging
: objectkey
: string (require) - key to use image recognition technology
autoTaggingButton
: bool - adds button which will automatically generate tags based on image recognition technology
provider
: string [google|imagga] - recognition provider
confidence
: number [0..100] - confidence of recognition
limit
: number - limit of tags generated by image recognition technology
let options = {
...,
tagging: {
autoTaggingButton: true,
provider: 'google',
confidence: 60,
limit: 10,
key: 'xxxxx'
}
};
onUpload(files: file[])
: function (required)Function to handle uploaded files.
let options = {
...,
onUpload: (files) => {
// do something
}
};
All contributions are super welcome!
FAQs
[DEPRECATED] The Filerobot Uploader is a multi-function Uploader that will make uploads super easy in your web sites and apps. It is fast to integrate allows end users to upload media, files and any assets via Filerobot's reverse CDN. Files are stored int
The npm package filerobot-uploader receives a total of 1 weekly downloads. As such, filerobot-uploader popularity was classified as not popular.
We found that filerobot-uploader demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.