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

pass1-stencil-demo-proj

v0.0.0

Published

Secure Tech Limited is a New York based IT solutions provider. They excel in providing software solutions in various domains ranging from banking, insurance to e-commerce. Securing the users' data is one of the most essential and standard requirements

Downloads

1

Readme

Create Password Validator Component

Secure Tech Limited is a New York based IT solutions provider. They excel in providing software solutions in various domains ranging from banking, insurance to e-commerce. Securing the users' data is one of the most essential and standard requirements among all types of products. Users of these products are required to authenticate their identities before accessing the application. To authenticate, the user is expected to provide login credentials. The password must be strong, and the strength is a combination of length and characters used. Since this is a common requirement, the firm wants its frontend developers to develop a reusable component that takes a password as input and validates it based on the length criteria specifications. Additionally, the component is expected to take the error message to be displayed as input. So, as a Frontend Developer, you are expected to carry out the task of building a PasswordValidator component and testing locally.

Why develop a Password Validator?

Passwords are an integral part of our lives today. Passwords provide the first line of defense against unauthorized access to our devices and personal information. The stronger the password, the more protected our data will be from hackers and malicious software. Hence, developing a strong PasswordValidator is essential.

Facts

  • 90% of passwords can be cracked in less than six hours
  • 59% of people use the same password everywhere
  • Only 7 out of 10 people trust passwords to protect their online accounts
  • 86% of people who use Two Factor Authentication (2FA) feel their accounts are more secure

Challenge

As a Frontend Developer, you are assigned to develop a component that validates the password that is inputted. It should validate the inputted password based on specified values. The values should be modifiable as per the client's requirements.

The PasswordValidator should have the option to input the preferred values for:

  • Minimum length: The minimum number of characters the password should contain
  • Maximum length: The maximum number of characters the password should contain
  • Error Message: The message for empty or invalid passwords

Below is a set of sample inputs followed by a table of common scenarios for a better understanding.

Preferred inputs:

  • Minimum length: 8 characters
  • Maximum length: 20 characters

| Input | Scenario | Error Message | | --- | --- | --- | | Hello2UAll | Password length is greater than the specified length. | | | Hello2U | Password length is less than the specified minimum length. | Password does not match the specified criteria | | Hello2UAllHello2UAllHello | Password length is greater than the specified length. | Password does not match the specified criteria | | | Password is deleted after typing or left blank. | Password is mandatory and cannot be left bank |

Once the component is developed, test it locally within the same Angular workspace.

Instructions

  • Create Angular Application
  • Add library project
  • Add Module
  • Add Component (eg. Password Validator)
    • Should have one input-bound property (Password)
    • Should have one output-bound property (validation-status (string))
  • Build the library project
  • Test it locally in the existing angular application inside same workspace