1.0.0 • Published 7 years ago

download.js v1.0.0

Weekly downloads
149
License
ISC
Repository
github
Last release
7 years ago

download.js

NPM version Downloads Dependency status Dev Dependency status

A simple file downloader for JavaScript.

Installation

npm install --save download.js

Usage

Download text as file using the downloadText function:

import { downloadText } from 'download.js'

downloadText('file.txt', 'Lorem ipsum dolor sit amet')

To download a blob, one may use the downloadBlob function.