
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
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 1 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.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.