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

guless-converter

v1.0.1

Published

一个用于转换字符串成 Base16/Base32/Base64/MD5/SHA-1 的库,兼容所有浏览器和宿主环境。

Readme

简介

Converter.js 是一个适用于低版本的浏览器编码/解码库。提供 Base16/Base32/Base64/MD5/SHA-1 这几个 编码/解码以及哈希计算的函数。

支持中文编码和解码!

引用

  • 直接引用: <script src="./converter.js"></script>
  • 通过 AMD 加载器引用:require(["converter"], function( converter ) { "your code here!" })
  • 通过 npm 安装: npm install guless-converter
  • 通过 bower 安装:bower install guless-converter

示例用法

  • Base16 编码/解码: encode(jsString, "base16") / decode(base16String, "base16")
  • Base32 编码/解码: encode(jsString, "base32") / decode(base32String, "base32")
  • Base64 编码/解码: encode(jsString, "base64") / decode(base64String, "base64")
  • md5 消息摘要:md5(jsString)
  • sha1 安全哈希值:sha1(jsString) 更多例子:test/node.js

API Reference

encode( string, codec )

将给定的字符串编码成指定格式的数据。

Params:

  • {String} string 指定需要编码的字符串。
  • {String} codec 指定编码类型,可以是以下常量中的一个(不区分大小写):
    • base16 | hex
    • base32
    • base32-hex | base32hex
    • base64
    • base64-urlsafe | base64urlsafe | base64-url | base64url

Returns:

  • {String} 返回编码后的数据的字符串表示形式。

decode( string, codec )

将给定的字符串解码成指定格式的数据。

Params:

  • {String} string 指定需要解码的字符串。
  • {String} codec 指定编码类型,可以是以下常量中的一个(不区分大小写):
    • base16 | hex
    • base32
    • base32-hex | base32hex
    • base64
    • base64-urlsafe | base64urlsafe | base64-url | base64url

Returns:

  • {String} 返回解码后的数据的字符串表示形式。

md5( string )

计算给定字符串的 MD5 哈希值。

Params:

  • {String} string 指定需要计算哈希值的字符串。

Returns:

  • {String} 返回 base16(hex) 编码过的 MD5 哈希值。

sha1( string )

计算给定字符串的 SHA-1 安全哈希值。

Params:

  • {String} string 指定需要计算哈希值的字符串。

Returns:

  • {String} 返回 base16(hex) 编码过的 SHA-1 安全哈希值。