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

vsframe

v2.4.0

Published

Virtual HTML frames machinery

Readme

vsFRAME -- VIRTUAL HTML FRAMES MACHINERY

(c) 2018-2026 Vladi Belperchinov-Shabanski "Cade" [email protected]

INTRODUCTION

vsFRAME is compact JavaScript HTML frames virtualization library.

SYNOPSIS

<html>
<body>

<h1>vsFrame</h1>

This is a html text for testing frames!

<div class=vsframe>
    This is first <a href=go1.html>test</a>
</div>

This is out-of-frame link, which points 
to <a href=go1.html data-vsframe-target=testvsframe1>target vsframe</a>

And another frame:

<div class=vsframe>
    <form action=form.pl method=post>
    <p><input name=text>
    <p><input type=file name=fff>
    <p><input type=submit value="GO!">
    </form>
</div>

<div class=vsframe id=testvsframe1>
  *** target vsframe here ***
</div>


Here is footer text
<script src="vsframe.js"></script> 
</body>
</html>

DESCRIPTION

It uses 'DIV' blocks as virtual frames. All links and forms inside virtual 'DIV' frame will replace only the enclosing 'DIV' frame content instead of reloading the whole page.

To enable 'DIV' to act as virtual frame, "vsframe" class must be added (as shown in the SYNOPSIS above).

If any link has "data-vsframe-target" attribute, the result data will be replaced not in the current vsFrame (or document) but inside a vsFrame with an ID, pointed by "data-vsframe-target".

Here is an example:

This is out-of-frame link, which points 
to <a href=go1.html data-vsframe-target=testvsframe1>target vsframe</a>

text....
text....
text....

<div class=vsframe id=testvsframe1>
  *** target vsframe here, result of link above will be replaced here ***
</div>

NOTES

vsFRAME is similar to 'iframe' but very different than 'frame'.

vsFRAME replaces only the enclosing 'DIV' and the result is homogeneous HTML text.

vsFRAME is written in native JavaScript and does not have further dependencies.

vsFRAME is tested with latest Firefox, Safari, Opera and Chrome (as of the latest vsframe.js commit time. :))

vsFRAME is intentionally plain JS code without modern JS dev crap. It has no minified version, if you need one, you are free to make one. If you do not like this, there are countless other JS "frameworks" and "revolutionary" libs.

vsFRAME is licensed under GPLv2, for full text see file "COPYING".

AUTHOR

Vladi Belperchinov-Shabanski "Cade"
<[email protected]>
https://github.com/cade-vs
https://github.com/cade-vs/vsframe
github repo: [email protected]:cade-vs/vsframe.git