![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.
Cloud Storage API Wrapper supporting Box, Dropbox, Skydrive, Google Drive
#var FileFog = require('filefog')
There are many cloud storage options for consumers. However each provider has their own API and API design philosophy, making it harder for developers to easily integrate their applications.
The idea behind FileFog is to provide a single consistent, promise-based API for developers to access user uploaded data, without having to worry about differing OAuth implementations, base urls or data parsing.
The FileFog philosophy is as follows:
Please note that this package is under heavy development, and the unified API may change unexpectedly. Once the API is stable, a version 1.0 will be released on NPM.
Initally FileFog will be released with only support for the following popular Cloud Services.
Providers for the following Cloud Services are also planned:
var filefog = require('filefog')
var filefog = require('filefog')
//This registration only needs to be done once.
filefog.use('dropbox', require('filefog-dropbox'), {client_key : '...',client_secret : '...'});;
//create a dropbox provider and client using previously saved access_tokens
var dropboxProvider = filefog.provider("dropbox")
//call dropboxProvider.oAuthGetAuthorizeUrl() if you do not have access_tokens already.
//dropboxProvider.oAuthGetAuthorizeUrl()
dropboxClient = dropboxProvider.getClienta({
access_token: '...',
refresh_token: '...'
})
.then(function (client) {
return client.getFolderInformation();
}).then(function (response) {
//Dropbox folder metadata, in a standardized format.
})
The docs are currently out of date, and as this library is underdevelopment and the API is not yet stable, this won't change for the forseeable future.
These are a list of commonly supported filefog options.
{Boolean|true} transform - determines if the raw response from the storage service is transformed to a filefog standardized format.
{Boolean|true} include_raw - include the raw response in the transformed response
{Boolean|true} auto_paginate - auto_paginate the responses if required
{String|null} root_identifier - set the root_identifier to namespace all filefog operations to a specific folder.
FAQs
Cloud Storage API Wrapper supporting Box, Dropbox, Skydrive, Google Drive
The npm package filefog receives a total of 4 weekly downloads. As such, filefog popularity was classified as not popular.
We found that filefog demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.