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

web-component-aspenify

v1.20.14

Published

Aspenify Web Components

Downloads

2,738

Readme

Built With Stencil

Aspenify Web Components 🛠

A collection of web components built for Aspenify Platform for reusability and performance. These WebComponents can be used across any JavaScript framework or no framework at all. We accomplish this by using standardized web platform APIs and Web Components.

api-aspenify - "1.19.18" demo-aspenify - "1.20.2" dev-aspenify - "1.20.1"

cisco-components -

state-aspenify - "1.20.13" cisco-prod = "1.20.14"

Components

We will gradually add useful components under this project. You can use these components to integrate with Aspenify Platform within any web based UI application. Please check component details in the table below.

| Sr. No. | Tag Name | Descritpion | | ------- | ------------------- |------------------------------------------------------| | 1 | aspenify-playbook | Get and display Playbooks from specified workspace | | 2 | aspenify-content | Get and display Content from specified workspace |

Features

  • Can be used with any JavaScript framework.
  • No external dependencies.
  • Built with accessibility in mind.
  • Supports all modern browsers and screen readers.
  • Additionally, limited support offered for IE11 and Edge 17+.
  • Comes with modified interface for mobile devices to provide better user experience.
  • Built using Stencil.js and Web Components.
  • Free to use under the MIT license.

Browser support

  • Google Chrome 61+
  • Apple Safari 10+
  • Firefox 63+
  • Microsoft Edge 17+
  • Opera 63+
  • Samsung Browser 8.2+
  • Internet Explorer 11

Package size

You don't need to worry about the package size as it will only download the components that you have used on your page. 🤩

Usage

This components collection is based on "differential bundling" strategy. The advantage of differential bundling is that modern browsers can avoid all the polyfills and bloated legacy JavaScript, and use the modern APIs already baked into the browser.

For example, the modern browsers will only download util-components.esm.js as they out-of-the-box support latest JavaScript features like ES Modules, async/await, Classes, etc. For IE11, it will download the util-components.js file which is in the ES5 syntax and has all the polyfills.

Script tag

  • Put script tags as shown above in the head of your web page.
  • Then you can use the custom elements anywhere in your template, JSX, html etc.

Unpkg CDN

<script type="module"
    src="https://unpkg.com/[email protected]/dist/web-component-aspenify/web-component-aspenify.esm.js"></script> 
<script nomodule src="https://unpkg.com/[email protected]/dist/web-component-aspenify/web-component-aspenify.js"></script>

jsDelivr CDN

<script type="module" src="https://cdn.jsdelivr.net/npm/[email protected]/dist/web-component-aspenify/web-component-aspenify.esm.js"></script>
<script nomodule src="https://cdn.jsdelivr.net/npm/[email protected]/dist/web-component-aspenify/web-component-aspenify.esm.js"></script>