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 🙏

© 2025 – Pkg Stats / Ryan Hefner

rinojs

v2.19.0

Published

Fast learning, preprocessing, intuitive web framework

Readme

Rino.js 🦏

Fast learning, preprocessing, intuitive web framework.

Rino.js is created to fix the complexity matters of web framework.

▶️ Installation

The recommended way to start your Rino project:

npm create rino@latest

For manual setup:

npm i rinojs

📢 Notice

🚀 Planning to go version v3.0.0

Rino.js is going to be version 3.0.0 after some of new features and bugs are sorted. I know my versioning style is not that great. But I want Rino.js version 3 to be more completed than beginning of version 2.

🎉 Release version v2.19.0

1. Deprecation of @

Now from version 2.19.0 we need to rino- instead of @ for attributes.

<component rino-path="/common/head" />
<component rino-path="/common/header" rino-tag="header"></component>
<script rino-type="markdown" rino-path="/docs/getting-started.md"></script>

2. Added escape to i18n system.

Input:

\<lang>head.title\</lang>
<p><lang>head.title</lang></p>
<p><lang>missing.value</lang></p>

Output:

<lang>head.title</lang>
<p>Translated Title Here</p>
<p><lang>missing.value</lang></p>

3. Added i18n pages' urls to project sitemap system

Now i18n pages are going to be included in project sitemap generation.

🎉 Release version v2.18.0

Rino.js now has a fully-featured, flexible, and developer-friendly JSON-based internationalization system for both dev server and static generation. Localization is now deeply integrated into the compiler pipeline while staying simple and intuitive to use.

Example structure:

pages/
  index.html
  about.html

i18n/
  en/
    index.json
    about.json
  ko/
    index.json
    about.json

Each <lang>...</lang> tag in your HTML will map to a key inside the corresponding JSON file:

index.html:

<h1><lang>header.title</lang></h1>
<p><lang>body.content.top[0]</lang></p>

i18n/en/index.json:

{
  "header": { "title": "Welcome" },
  "body": {
    "content": { "top": ["First content block"] }
  }
}

rino-config:

You can explicitly define which locales should be built and served. Only "en" and "ko" directories under /i18n/ are used. All other locale folders are ignored (safe, predictable output). defaultLocale is applied to root pages (e.g. /index.html). Localized pages will be generated under /dist/<locale>/ automatically.

    i18n: {
        defaultLocale: "en",
        locales: ["en", "ko"]
    }

Other things to note for i18n feature:

  • Supports nested objects
  • Supports array indexing (e.g. items[0].label)
  • Missing keys gracefully fallback to default locale if configured

👍 Releasing Version 2

New version, better development experience and totally different from version 1.

Many syntax is simplified and following html, css and javascript standard. And many things are updated for automation.

Development Build System is changed to the server side rendering with memory data management with individual IO update on change. I call this, build on request. This is so much faster than version 1.

Example of Rino 2

  • ./pages/index.html
<!DOCTYPE html>
<html>
  <head></head>
  <body>
    <component
      @path="button"
      @tag="button"
      type="button"
      onclick="alert('Hello world!')"
    />
    <component @path="footer" @tag="footer" />
    <script @type="md" style="color: red" type="text/markdown">
      ## test

      test

      - test
    </script>
    <script @type="ts" type="text/typescript">
      // This is for templating html content
      let world: string = "Hello world! from typescript";
      console.log(world);
    </script>
    <script @type="js" type="text/javascript">
      // This is for templating html content
      console.log("Hello world! from javascript");
    </script>
  </body>
</html>

🕵️ Test

E2E Test

Right now end to end testing is implemented for test backoffice website with cypresss and playright. Both can be used to test backoffice website by:

Cypress:

npm run test-cp

Which is npx cypress open

Playwright

npm run test-pw

Which is npx playwright test

Unit Test

I am thinking of using jest.

📖 Documentation

Official Website

💪 Support Rino!

👼 Become a Sponsor

🐱‍🏍 Sponsors

👨‍💻 Author

Victor Chanil Park

💯 License

MIT, See LICENSE.