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

@pearson-ux/login

v2.0.11

Published

Login web component

Downloads

8

Readme

Web Component Markup Kit

An HTML, CSS, and JavaScript boilerplate for building a web component in the Pearson Web Components project.

Getting Started

Follow these steps carefully!

  1. Navigate to the folder where the existing markup for the component lives.
  2. Create a new git branch with the name component/COMPONENT_NAME, where COMPONENT_NAME is the name of the component you are building.
  3. Download this repository as a zipfile.
  • If you clone this repo, you must remove its .git directory. If you do not remove this directory, the spec kit will become a submodule in the web component's repo. Submodules are not the correct approach, and are not supported.
  1. Unzip the zipfile and move the contents of the resultant folder into the root folder of the component you are working on.
  • This means that the existing markup-kit folder should be a sibling of the new files from the spec-kit folder
  1. Delete the folder that was created in the unzip operation.
  2. From within the root of this project, run npm install to install its dependencies.
  3. Run gulp to build, serve, and watch your spec kit. Your browser will open a new tab with a Browsersync server, which will automatically refresh as you develop.

The code below accomplishes steps 1 through 7 using cloning. Replace PATH_TO_WEB_COMPONENTS_DIRECTORY with the path to the web components repo on your machine, and replace COMPONENT_NAME with the name of the component you are developing.

# Move to the directory housing the existing markup-kit.
cd PATH_TO_WEB_COMPONENTS_DIRECTORY/COMPONENT_NAME
# Create a new branch for the web component
git checkout -b component/COMPONENT_NAME
# Clone the spec kit starter, renaming it as `temp`
# (the temp folder will be deleted shortly)
git clone --depth 1 https://github.com/pearson-ux/web-component-spec-kit temp 
# Move the contents of `temp` into this folder
mv temp/* temp/.gitignore ./
# Delete the temp directory and its contents
rm -rf temp/
# Install the kit's dependencies
npm install
# Build, serve, and watch the spec kit for changes.
gulp

Developing the web component

The existing markup kit should be used as the basis for the styling and behaviors of the final web component. Refer to the Pearson UX Framework for more details about how your component should behave. If your component is not in the UXF, details about it should be documented on a relevant issue on Web Components project board.

Building

This kit comes with a Gulp build system to streamline development. It exposes the following tasks:

  • default: executes build, watch, and serve
  • build: Transpiles the SASS and JavaScript files
  • watch: Watches the HTML, SASS, and JavaScript files for changes
  • serve: Starts a Browsersync server

Most of the time, the default task, executed by just running gulp itself, will be all you need.

Setting up

After you run gulp the first time, the file tree in the spec kit will look like this:

├── css
│   └──style.css
├── js
│   ├── dist
│   └── pearson-login.js
├── markup-kit
├── node_modules
├── scss
│    ├── _animations.scss
│    ├── _elements.scss
│    ├── _example.scss
│    └── style.scss
├── gulpfile.js
├── index.html
├── package-lock.json
├── package.json
└── README.md

Replace the word example in the SCSS and JavaScript file names with the name the component you are developing. For instance, _example.scss should become _alert.scss These file names will have to be edited in where they are referenced, as well: index.html imports the example.js file; style.scss imports the _example.scss file.

To see your stylesheet applied to your component, you must copy the code in css/style.css into the template in your JS file.

Contributing

Consult the Pearson Web Components project wiki to learn some best-practices for writing code and submitting pull requests to the project.