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 🙏

© 2025 – Pkg Stats / Ryan Hefner

ember-filesystem

v0.2.3

Published

The default blueprint for ember-cli addons.

Readme

Ember-filesystem

A simple addon for working with File uploads and inputs.

Installation

  • ember install ember-filesystem

Use

ember-filesystem provides a filesystem service with two functions:

  • prompt - Opens a file picker using a hidden input and returns a promise that resolves with the selected files (or rejects if the user cancels)
  • fetch - Allows use of the window.fetch API while formatting input data to be properly encoded.

Prompt for File Inputs

To see this in action, we'll make a component called file-picker:

// components/file-picker.js
import Ember from 'ember';

export default Ember.Component.extend({
  tagName: '',
  filesystem: Ember.inject.service(),

  actions: {
    openDialog() {
      this.get('filesystem').prompt().then((files) => {
        // Triggers the action the current component passing the files that were selected
        // Converts from FileList to JS Array
        this.action(Array.from(files));
      });
    }
  }
});

Here is the template for this component, we'll just make a simple button that triggers the openDialog action:

<button {{action "openDialog"}}>Upload a file</button>

Let's see how this could be used in action with the mut helper to modify values in a form.

{{#each selectedFiles as |file|}}
  <p>{{file.name}}</p>
{{/each}}

{{log selectedFiles}}

{{file-picker action=(action (mut selectedFiles))}}

See this example in Ember Twiddle.

Submitting Files

One of the hard things working with File uploads is the change between JSON body and form-data. The fetch method provided by ember-filesystem helps clarify some of this. Instead of trying to match every API with an Ember Data extension, using a wrapper around window.fetch, then we can use the results and pass it into Ember Data.

Here is another example that uses a small express server that grabs the meta data from a file and formats it to the JSON API spec.

import Ember from 'ember';

export default Ember.Controller.extend({
  filesystem: Ember.inject.service(),
  selectedFiles: [],

  actions: {
    upload(file) {
      const fetch = this.get('filesystem.fetch');

      fetch('https://arcane-stream-63735.herokuapp.com/upload', {
          method: 'POST',
          headers: {
            accept: 'application/json',
          },
          body: { 'profile-image': file[0] },
        }).then(res => res.json())
        .then((data) => {
          const upload = this.store.pushPayload(data);
        });
    },
  }
});

Notice that we send the file from our file upload, then we call filesystem.fetch like a regular window.fetch request. But, under the hood Ember Filesystem is setting headers and formatting the body to fit file uploads (making it easier to work with files without forgetting the edge cases).

See the code on Ember Twiddle