Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

node-blob

shaneharris39.7kMIT0.0.2

A node.js based blob implementation - designed to work with node, not the browser.

node.js, blob

readme

This module provides a shim for the browser blob for use with node.js

Example Usage

const Blob = require('node-blob');

let myBlob = new Blob(["something"], { type: 'text/plain' });