🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

bivrost-save-blob-adapter

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bivrost-save-blob-adapter

Bivrost adapter. Allows to save api resposne as blob

latest
Source
npmnpm
Version
3.2.2
Version published
Maintainers
1
Created
Source

Bivrost save blob adapter

Bivrost adapter. Allows to save api resposne as blob.

yarn add bivrost-save-blob-adapter

Usage

With Bivrost:

import DataSource from 'bivrost/data/source';
import bivrostApi from 'bivrost/http/api';
import axiosAdapter from 'bivrost-axios-adapter';
import saveBlobAdapter from 'bivrost-save-blob-adapter';

const api = bivrostApi({
  host: 'localhost',
  adapter: saveBlobAdapter(axiosAdapter()),
});

class UsersDataSource extends DataSource {
  steps = ['api'];

  api = {
    loadAll: api('GET /users'),
  };

  saveUsersJSON(filters) {
    return this.invoke('loadAll', filters).then(download => {
      // call download function and generate filename
      download((url, params, response) => `users-${response.length}.json`);
    });
  }
}

const usersDataSource = new UsersDataSource();

// Will save GET /users response as "users.json" file
usersDataSource.saveUsersJSON().then(() => {
  console.log('file saved');
});

Direct calls:

import axios from 'axios';
import axiosAdapter from 'bivrost-axios-adapter';
import saveBlobAdapter from 'bivrost-save-blob-adapter';

const axiosAdapter = axiosAdapter(axios);
const saveBlob = saveBlobAdapter(axiosAdapter);

const requestOptions = {
  method: 'GET',
};

saveBlob('/report/exel', requestOptions).then(download => {
  download(() => 'exel.xls');
}); // browser will save and download response as file

Bivrost allows to organize a simple interface to asyncronous APIs.

Other adapters

Keywords

bivrost

FAQs

Package last updated on 14 May 2018

Did you know?

Socket

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.

Install

Related posts