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 🙏

© 2026 – Pkg Stats / Ryan Hefner

my-eing-footer

v1.0.0

Published

EING Footer Module

Readme

eing-footer

Description:

This module is used to show Footer on the Page.

To use this module import eing-footer and add this tag in the html/component <eing-footer></eing-footer>

Prerequisites:

nodejs must be installed.

Dependent feature/utility modules should be available in the private npm registry.

Setup comcast NPM Registry:

This setup is one-time process and common/required for all types of eing-* modules.

npm config set registry https://artifactory.io.comcast.net/api/npm/npm-all

npm config set @angular:registry https://registry.npmjs.org/

npm config set @types:registry https://registry.npmjs.org/

npm config set @ngtools:registry https://registry.npmjs.org/

npm config set @ngrx:registry https://registry.npmjs.org/

npm install [email protected]

webdriver-manager update

Build Process:

npm start - To bootstrap the module on your local machine, in non-production mode.

npm run build - It will produce a dist named as "footer". Now we can place this dist on any server to run it. It will execute in production mode.

Running Unit Tests:

  1. Run npm run unit:test.

  2. It will create the coverage report in coverage folder and test report in karmaUnitTestReport folder.

Running e2e Tests:

  1. Run protractor

  2. It will create the report in protractorReports folder.

How to publish:

  1. If the project/module is already published, please unpublish it first. To unpublish you can use npm unpublish -f or npm unpublish -f <module_name> or npm unpublish -f <module_name@version>

  2. Run npm publish to publish a latest package.

  3. Verify on private npm registry/artifactory web console (https://artifactory.io.comcast.net/webapp/).

Runner

  1. To make this module self runnable we are using Runner which could be found under "runner" folder on the root of the application.

  2. Whenever we introduce new dependencies for the module please also refer to the systemjs.conf.js file for updating the references.

  3. Please note, whenever we build package of the application using npm run build this Runner is not included in the packaged file i-e *.umd.js because currently this is only used for development purpose and to run functional test cases on individual features.

Rollup / Tree Shaking

  1. Whenever we import new external dependency in our source files we would also have to define those dependencies in globals and external array of rollup.conf.js

Gulp

  1. We are using gulp to inline our scss and html files while using typescript to compile our code into js format with the help of tsconfig.json

  2. We are also using gulp-watch which helps us in smooth development and faster ts to js compilation at development time.

  3. We are using gulp mainly for generating module specific distribution which should be deployable in any external server. e-g For eing-<MODULE_NAME>, it will generate <MODULE_NAME>

Note: Whenever any dependency is changed then delete the dependency of that project from node_modules of app manually before running npm start or npm run build or npm run unit:test or protractor.