npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

node-fire-storage

v1.0.2

Published

download from storage to either will get url public or private

Readme

node-fire-storage

To connect firebase storage and will make insert file or folder ,delete file ,download file with url expiration(ie signed url with expiration token )

Installation

npm install node-fire-storage

Require the package

let admin = require('node-fire-storage')

NOTE: sending params need to connect firestorage mention below.

 const bucket  = admin.initializeApp({
  credential: admin.credential.cert(serviceAccount),
  storageBucket: 'your-firebase-storage-bucket-url', // Replace with your Firebase Storage bucket URL
});

var store = bucket.storage().bucket();

Operations

1 Insert File to Firebase storage

2 Getting downloadUrl from Firebase storage

3 Delete File from Firebase storage

NOTE : Make sure you will send file along with file type Example : filename.png/jpeg/csv/xlxs etc

Example: my_image_001.png

1 Insert File to Firebase storage

To insert file to storage want to send below params 
let params = {
     bucketRef: '', //  firebase storage connection variable like above one `EX`store
     filePath: '', // the file that locate in our system `EX` C:\Users\MyName\Desktop\image\my_image_001.png 
     filename: '',// the name we want to save in storage `EX` my_image_001.png **Any name**
     destinationPath: ''//   mention file path `EX` Image --> this is create folder in storage, if you give Image/tourimage --> this will create folder inside folder
 }

Function name

uploadToStorage(params)

Example

store.uploadToStorage(params).then((res)=>{
    console.log(res)
})

2 Getting downloadUrl from firebase storage

To get downloadUrl url either signed or unsigned (expiry or unexpiry url)

if you want unsigned url send params as below one

let params = {
    bucketRef: '', // firebase storage connection variable like above one `EX`store
    filePath: '',  // filepath in storage bucket `EX` Image/my_image_001.png
    unit: '',
    value: ''
} 

if you want signed url send params as below one

Unit

`y` - `years`
`M` - `Months`
`w` - `weeks`
`d` - `days`
`h` - `hours`
`m` - `minutes`
`s` - `seconds`
let params = {
    bucketRef: '', // firebase storage connection variable like above one `EX`store
    filePath: '',  // filepath in storage bucket `EX` Image/my_image_001.png
    unit: '',// above mention units give here // `EX` 's' in strings 
    value: '' // `ex` 60 in numbers 
} 

Function name

getDownloadUrl(params)

Example

store.getDownloadUrl(params).then((res)=>{
    console.log(res)
})

3 Delete file from firebase storage

To delete file from the firebase storage

let delparams = { bucketRef: '',// firebase storage connection variable like above one EXstore filePath: '', // filepath in storage bucket EX Image/my_image_001.png }

Function name

deleteFileFromStorage(params)

Example

store.deleteFileFromStorage(params).then((res)=>{
    console.log(res)
})