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

holoweb

v0.0.1

Published

HoloWeb - Holograms on the web, holograms for everyone!

Downloads

4

Readme

HoloWeb - Holograms go online

This project aims to bring Holograms online: Easy to use for everyone + developer-friendly.

A user should be able to display a hologram application on every device - be it a smartphone, a tablet, a laptop, an office pc or even a Raspberry PI. The only thing needed is a webbrowser - even watches run browsers nowadays.

For a better impressione, have a look at those images!

Live HoloWeb:

live

Meanwhile on the display:

hClock

How to use the Web of Holograms

  1. You need a pyramide which consists of a semi-transparent material, e.g. plexiglass. You can easily make one yourself or buy one in the internet. Here's a link to a good DIY tutorial: https://diyhacking.com/diy-hologram/

  2. A device with an installed browser and a display. To interact with it, a mouse and a keyboard need to be connected to the device.

  3. A HoloWeb-App you want to run on that device. Have a look at the Example part!

Developer's guide

You are a developer and want to develope the HoloWeb-Apps of tomorrow? Then keep on reading.

Requirements

  • You should be keen on Javascript
  • You should know how to use at least one package manager to consume the HoloWeb-packages (e.g. npm, yarn)
  • You should have a great idea you want to share with the rest of the world

This sounds like you? Then don't hesitate to open up your console and build something great!

Of course, you also need one of those fancy pyramides!

Getting started

  1. Install the package with the package mananger of your choice! For Example:
npm i -S holoweb
  1. Consume it somehow (module bundler...).

  2. Build great applications! (Have a look at the documentation part)

Documentation

Here's a list of all exports of the module and how to use them. Sorted by importance.

  1. setMarkup()
setMarkup(html: String, element: DOMElement)

This function created a hologram out of your DOM-Element. Just provide some html content, which you pass as the 1° argument and a DOM-Element.

Example

setMarkup(
  `
    <div class="app-container">
      HELLO WORLD
    </div>
  `
, document.querySelector('#app'));

Together with template strings, this can be used very efficiently.

  1. setSize()
setMarkup(width: Number, height: Number)

This function resizes the hologram. I think there's not mucsetMarkup(width: Number, height: Number)h more to say.

  1. on()
on(event: String, callback: Function)

With this function you can setup event listeners to certain holoweb-events. Here's a list of events (this are constants which are also exported by the module, which can then be used as the first argument of the on-method).

  • UP: Fired when the UP-Arrow of the keyboard is hit.
  • DOWN: Fired when the DOWN-Arrow of the keyboard is hit.
  • LEFT: Fired when the LEFT-Arrow of the keyboard is hit.
  • RIGHT: Fired when the RIGHT-Arrow of the keyboard is hit.
  • PRIMARY_ACTION: Fired when the SPACEBAR of the keyboard is hit.
  • SECONDARY_ACTION: Fired when the ENTER-Button of the keyboard is hit.

Implementation for other frameworks/libraries

Currently, their are no other implementations available. But you are free to write one, if you want (I currently don't have enough time, but if there's more interest in this module, I'm going to write a React-implementation).

Example

I developed an example app for the HoloWeb. It's a simple clock and not fully finished, I will finish it when I have time for it. But it's good enough to demonstrate this module for now :smile:

It's hosted on Github pages: