JSPM

firebase

0.5.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3052927
  • Score
    100M100P100Q205394F

Firebase library for Node.js

Package Exports

  • firebase
  • firebase/package.json

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) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

firebase-node

This is the node library for Firebase. Firebase is a real-time data synchronization service designed to power collaborative applications. You can learn more on the Firebase website at www.firebase.com.

Getting started with the Firebase node client is easy. First, install the client library:

npm install firebase

Next, you'll need to create a Firebase account to get a URL for your Firebase data.

Lastly, create your Firebase in your code and write some data:

var Firebase = require('firebase');
var dataRef = new Firebase('https://myprojectname.firebaseIO-demo.com/');
dataRef.set("hello world!");