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

rongjs

v1.2.1

Published

一个充满少女心的 JS 迷你库,提供趣味功能和浏览器 API 封装。A cute and fun JavaScript library with fun features and browser API wrappers.

Readme

RongJS 💖

一个充满少女心的 JS 迷你库,提供趣味功能和浏览器 API 封装。

✨ 特性

  • 趣味功能: 内置“今日幸运色”和“彩虹屁生成器”,让你的一天充满好心情!
  • 浏览器 API 封装: 简化了地理定位 (Geolocation) 和电池状态 (Battery Status) 等常用 API 的调用。
  • 轻量级: 零依赖,体积小,开箱即用。
  • 现代化: 使用 ES Module 和 async/await 等现代 JavaScript 特性。

🚀 安装

使用 npm 安装 RongJS:

npm install rongjs

💡 使用方法

在你的 JavaScript 文件中导入并使用:

import Rong from 'rongjs';

// --- 使用趣味功能 ---

// 获取今日幸运色
const color = Rong.Fun.getLuckyColor();
console.log(`你的幸运色是 ${color.name} (${color.hex})!`);

// 获取一句赞美
const compliment = Rong.Fun.getCompliment();
console.log(compliment);


// --- 使用浏览器 API (仅在浏览器环境中有效) ---

// 查找附近的咖啡店
async function findCoffee() {
  try {
    const shops = await Rong.Geo.findNearbyCoffeeShops();
    console.log('附近的咖啡店:', shops);
  } catch (error) {
    console.error(error.message);
  }
}

findCoffee();

模块 API

Rong.Fun

  • getLuckyColor(): 返回一个包含 { name, hex } 的幸运色对象。
  • getCompliment(): 返回一句字符串格式的赞美。

Rong.Geo (浏览器专用)

  • findNearbyCoffeeShops(): 返回一个 Promise,解析后得到一个模拟的咖啡店列表。

Rong.Device (浏览器专用)

  • getBatteryStatus(): 返回一个 Promise,解析后得到包含 { level, charging } 的电池状态对象。

📝 许可证

MIT