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

@ewc-lib/ewc-footer-links

v2.2.2-alpha

Published

One line w/ a feedback link on the left side and legal links (etc.) on the right side.

Downloads

49

Readme

EWC footer-links Component

One line w/ a feedback link on the left side and legal links (etc.) on the right side.

Overview

The ewc-footer-links component provides a standardized footer for Eurostat web applications. It offers a consistent visual identity across Eurostat digital products.

Features

  • Responsive design
  • Accessibility compliant

Screenshot

Screenshot

API

| Attributes | Properties | Default value| Description |-------------------|------------|------------|--------- | | text | - | JS object. props are all attributes listed below. Can also be used to set just 1 single text. |email | | [email protected] | |subject | | Eurostat%20support| |feedback | | Feedback| |feedback-url | | mailto:[email protected]| |cookies | | Cookies | |cookies-url | | https://commission.europa.eu/cookies-policy_en| |privacy-policy | | Privacy policy| |privacy-policy-url | | https://commission.europa.eu/privacy-policy-websites-managed-european-commission_en | |legal-notice | | Legal notice| |legal-notice-url | | https://commission.europa.eu/legal-notice_en| |accessibility | | Accessibility | |accessibility-ur | | https://ec.europa.eu/eurostat/web/main/help/accessibilit|

Note: changing these attributes during runtime will update the href and change the link.

Margin borders

The distance to the left and the right viewport borders default to "5%" and can be set via CSS.

For example:

ewc-footer-links{padding: 0 16px 0 16px;}

Usage

Installation

npm install @ewc-lib/ewc-footer-links

Import the component in your application:

// Using ES modules
import "@ewc-lib/ewc-css-common/custom-props.css";
import '@ewc-lib/ewc-footer-links';

Then the element can be used like this

<div style="width:100%;">
  <style>ewc-footer-links {padding: 0 20px 0 20px;}</style>
  <ewc-footer-links
    email="[email protected]"
    subject="This is the eMail's subject">
  </ewc-footer-links>
</div>

Notes

Accessibility

The component is designed with accessibility in mind:

  • Keyboard navigable element
  • Sufficient color contrast

Browser Support

  • Chrome (latest)
  • Firefox (latest)
  • Safari (latest)
  • Edge (latest)

License

European Union Public License (EUPL)

Changelog

  • 2.2.2-alpha

    • remove underline style on links (standalone links)
    • fix active style on feedback link
    • fix feedback icon position
  • 2.1.1-alpha

    • correct mistake in usage examples
    • increase encapsulation
  • 2.1.0-alpha

    • add setter, docu and usage examples