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

rdpass

v1.1.0

Published

自动密码生成器

Downloads

1

Readme

自动代码生成器!

这个模块用于选择困难症患者自动生成密码或者脚本里面自动生成密码

安装

npm install rdPass --save

使用

import rdPass from 'rdPass';

默认用法

自动生成难度为3(包含数字和大小写字母),长度为6的密码

rdPass

比如生成了W0T8zL

自定义难度

通过第一个参数自定义难度(一共5种难度,输入的数字会对5取余,默认为3)

rdPass 4

比如生成了QNOQ/8

自定义长度

第二个参数会作为密码的长度(长度无限制,此时不可省略第一个参数,默认为6)

rdPass 4 12

比如生成了zO9YC+YDU4Rn

参数说明

第一个参数为难度参数

一共提供了5种难度,输入的数字会对5取余,所以可以输入任意正整数。其中0对应着最高难度5。难度解释: |难度|包含的字符| |--|--| | 难度1 | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 | | 难度2 | 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' | | 难度3 | 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z' | | 难度4 | ',', '.', '_', '-', '=', '+', '/', '*' | | 难度5 | '"', "'", '[', ']', '{', '}', '|', '!', '@', '#', '$', '%', '^', '&', '(', ')' | 每一级难度会包含本级别以及低于本级别的所有字符。

长度说明

第二个参数为密码长度。长度没有限制,会对输入的值取整取绝对值。在有第二个参数的情况下不能省略第一个参数。