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

@pwabuilder/pwa-simulator

v0.0.8

Published

Web component that simulates your PWA's experience on any platform

Downloads

11

Readme

PWABuilder: pwa-simulator

A web component that allows you to preview your PWA on Windows 11, based on your app's manifest.json file!

Built with

Using this component

Modes

The pwa-simulator can be used in 2 ways:

  1. You can enter the PWA's URL in the initially rendered form, and via the pwabuilder-manifest-finder API, the component fetches the corresponding web manifest.
  2. The site's URL can be passed as a property to the component, together with the web manifest. Note that the PWA's URL is still needed in this mode to display the icons and other images.

Configuration

All properties are optional and have default values, but for the optimal experience these should be modified as needed. Note that in the HTML markup, property names should be all in lowercase. For more information refer to lit's documentation.

  • siteUrl: The PWA's URL. If not defined, the component will initially display a form to input the site's URL (see mode 1 above).
  • manifest: The input manifest object. The siteUrl property should be defined if a manifest is given as input.
    • Default:
    {
      name: 'PWA App',
      background_color: '#FFF',
      theme_color: '#E3CEF6',
      categories: [],
      shortcuts: [],
      display: 'standalone',
      description: 'An amazing progressive web app!',
      icons: [
        {
          src: '/assets/icons/icon_512.png',
          sizes: '512x512',
          type: 'image/png'
        }
      ]
    }
  • hideEditor: If true, the code editor is hidden and only the preview window is displayed.
    • Default: false
  • explanations: Object containing the explanation messages that are displayed when the user interacts with the previewer. initial is the starting message (can be used to suggest an initial action to the user). appWindow, startMenu, jumpList and store are all shown when the respective window is open. If a value isn't specified, the default message is used.
    • Default:
    {
      initial: "Do you see something familiar on the taskbar?",
      appWindow: "The background color, theme color and display attributes determine several UI aspects of your PWA, such as the titlebar.",
      startMenu: "The application's name and icon are used in the start menu.",
      jumpList: "The actions listed on the shortcuts attribute define a context menu that is displayed when right-clicking on the taskbar icon.",
      store: "Screenshots, a complete description and categories will enhance your app's listing in the Microsoft Store."
    }
  • explanationDisplayTime: The duration (in milliseconds) of the explanation message display, after which it fades out.
    • Default: 5000 (5 seconds)

Styling

This component can also be styled according to the needs of your application.

The simulator exposes the parts below for customization with the CSS ::part() pseudo-element: Part name | Description ----------|------------ background | The simulator's main container. content | The container of both the text editor and platform window. input-form | The form for entering the PWA's URL. input-title | The title of the form for entering the PWA's URL. input-field | The text field for entering the PWA's URL. input-button | The button that submits the form for entering the PWA's URL. status-message | The text that announces changes in the preview manifest.

The following CSS variables can also be provided: Variable name | Description | Default --------------|-------------|-------- --font-family | The component's main font family. | Arial --font-color | The component's main font color. | #292C3A --background | The CSS background of the entire component. | linear-gradient(252.83deg, #5039A8 2.36%, #6AA2DB 99.69%) --pwa-background-color | Fallback background color to use in case it is not defined in the manifest. | #FFF --pwa-theme-color | Fallback theme color to use in case it is not defined in the manifest. | #E3CEF6