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

@plutovr/multi-app-manager

v0.10.5

Published

Pluto Multi App Manager

Downloads

10

Readme

Pluto Multi App Manager

A collection of events and event handlers that allow your WebXR app to communicate with Pluto Multi App Launcher and Pluto Communications Service when running as an XRPK

Installation

npm i pluto-mae 

Running a local version of Multi App Manager

While there are other ways of running a local version of an NPM module, such as using NPM link, this is the flow that is guarenteed to work.

Creating a local build of Multi App Manager

  1. Make changes to Multi App Manager, then run npm run archive

    This will build the project and create a TGZ archive file, which is what you will use to include Multi App Manager in your local project

  2. Copy the path to the TGZ file that was just created (right-click on the file and select "Copy Path")

Installing the local version of Multi App Manager in your project

  1. In your own project, install the local version by running npm i "<path-to-archive-file>"

    For example:

    npm i "C:\Users\<user>\pluto-multi-app-manager\plutovr-multi-app-manager-0.8.2.tgz"

    If you already have a remote version of @plutovr/multi-app-manager installed, this will replace it with the local version.

Anytime you make changes to Multi App Manager, you will have to go through these steps again (archiving and then installing).

If you have the local version installed already, it's sufficient to run npm update @plutovr/multi-app-manager after archiving, as this will update to the newer archive file.

Publishing new package and release versions

  1. Checkout main (which should already have merged any changes for the new version)
  2. Use npm version version-number-or-semantic-level to add a new commit and tag with the new version (e.g. npm version v0.10.0 or npm version patch)
  3. npm run archive
  4. npm publish
  5. git push --tags
  6. Go to https://github.com/PlutoVR/pluto-multi-app-manager/tags
  7. Click the tag that you just pushed
  8. Click the "Create release from tag" button in the upper right
  9. In the description, add relevant notes and an npm link to the just-published version (can find this at https://www.npmjs.com/package/@plutovr/multi-app-manager under the versions tab)
  10. Click the "Publish release" button