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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@lilpwa/pwa-files

v0.0.1

Published

`pwa-files` is a [web component](https://meowni.ca/posts/web-components-with-otters/) from the [PWABuilder](https://pwabuilder.com) team that brings an awesome "install" experience to your Progressive Web App!

Downloads

3

Readme

pwa-files

pwa-files is a web component from the PWABuilder team that brings an awesome "install" experience to your Progressive Web App!

Built with lit-element

Supported Browsers

  • Edge
  • Chrome
  • Firefox
  • Safari

Using this component

Install

There are two ways to use this component. For simple projects or just to get started fast, we recommend using the component by script tag. If your project is using npm then we recommend using the npm package.

Script tag

  • Put this script tag in the head of your index.html:
<script type="module" src="https://cdn.jsdelivr.net/npm/@lilpwa/pwafiles"></script>

NPM

  • Run npm install @lilpwa/pwafiles
  • import with import '@lilpwa/pwafiles'

Then you can use the element <pwa-files></pwa-files> anywhere in your template, JSX, html etc.

API

Properties

| Property | Attribute | Description | Type | Default | | -------------- | -------------- | ----------------------------------------------------------------------------- | --------------- | --------------------------- | | buttonString | buttonString | Controls the text inside the open files button | string | Choose A File | | mode | mode | Should the button open files or directories? | string | files | | mimeTypes | mimeTypes | The mime type of the file you would like a user to choose | Array<string> | ['image/*'] | | extensions | extensions | The extensions of the file you would like a user to choose | Array<string> | [".png", ".jpg", ".webp"] | | description | description | A description that will appear in the OS system file picker | string | "" | | recursive | recursive | If a directory is chosen should directories inside that be recursively opened | boolean | true |

Methods

| name | Description | | ------------ | --------------------------------- | | saveFile() | Saves the currently opened file |

Interactions with the methods requires a reference to the element itself, if using webcomponents or a library like Lit-Element or Fast-Element, this can be done easily within the if using the component from the browser.

Events

| name | Description | | ------------ | --------------------------------- | | file-opened | ev.blobData contains a blob of the user chosen file | | dir-opened | ev.blobData contains a blob of the user chosen directory | | error | When an error is caught this event will contain the error message |

Styling

Shadow Parts

The contents of this component is just a normal HTML button element, and it can be targeted and styled normally using Shadow Parts. You can target this button element using pwa-files::part(innerbutton). For example, to make the background of the button grey, I would need this CSS:

pwa-files::part(innerbutton) {
  background: grey;
}

Usage Example

<pwa-files id="file" buttonString="Pick A File"></pwa-files>

<pwa-files
  id="dir"
  buttonString="Open A Directory"
  mode="directories"
></pwa-files>

<button onclick="saveFile()">Save Current Opened File</button>

<script>
  function saveFile() {
    document.querySelector("#file").saveFile();
  }
</script>

<script type="module">
  import "../build/pwa-files.js";

  document.querySelector("#file").addEventListener("file-opened", (ev) => {
    console.log(ev);
  });

  document.querySelector("#dir").addEventListener("dir-opened", (ev) => {
    console.log(ev);
  });
</script>