JSPM

@firebase/storage

0.2.2-canary.fbd5bd6
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2971969
  • Score
    100M100P100Q189741F
  • License Apache-2.0

Package Exports

  • @firebase/storage

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@firebase/storage) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@firebase/storage

This is the storage component for the Firebase JS SDK. It has a peer dependency on the @firebase/app package on NPM. This package is included by default in the firebase wrapper package.

Installation

You can install this package by running the following in your project:

$ npm install @firebase/storage

Usage

You can then use the firebase namespace exposed by this package as illustrated below:

ES Modules

import firebase from '@firebase/app';
import '@firebase/storage'

// Do stuff w/ `firebase` and `firebase.storage`

CommonJS Modules

const firebase = require('@firebase/app').default;
require('@firebase/storage');

// Do stuff with `firebase` and `firebase.storage`

Documentation

For comprehensive documentation please see the Firebase Reference Docs.