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

logxr

v0.4.2

Published

WebXR in-session console

Downloads

4

Readme

LogXR

npm version language npm download license

A debugging utility that makes it easy to view console logs in WebXR experiences. LogXR provides developers with a simple and straightforward way to debug and troubleshoot their WebXR applications, giving them clarity and insight into the console output. The library is designed to be lightweight and versatile, offering a wide range of customization options for the appearance and behavior of the XR console. Currently, LogXR only supports Three.js, with support for Babylon.js coming soon.

Features

  • 💻 Familiar API: No need to learn a new logging API. After setting up LogXR, developers can continue using the familiar console API for logging, and their logs will be displayed both in the browser dev console and in the XR console.
  • 💬 Supports Multiple Console Methods: LogXR currently supports the following console APIs: console.log, console.warn, console.error, console.info, and console.debug.
  • 💨 Lightweight and Versatile: LogXR's lightweight design and lack of predefined XR interactions for controlling the console make it easy to integrate into any WebXR project. This versatility gives developers complete control over how they configure and use the XR console, making it highly adaptable to their specific needs.
  • 🎨 Customizable Appearance: LogXR provides a wide range of options for customizing the appearance and behavior of the XR console, including the ability to set the background color, colors for different types of logging, and the size and resolution of the console panel.

Demo App

A demo app has been built using Three.js to showcase LogXR in action. You can check out the demo app at https://felixtrz.github.io/logxr/ to see how LogXR works and to get a feel for its capabilities.

This demo app is a great resource for developers who are considering using LogXR in their projects. It provides a hands-on experience with the library, and will give you a better understanding of how it works and what it can do.

Installation

To install LogXR, simply run the following command in your terminal:

npm install logxr

Or if you prefer using Yarn:

$ yarn add logxr

Usage

Using LogXR is simple. First, import the package in your WebXR project:

import { XRConsoleFactory } from 'logxr';

NOTE: LogXR requires Three.js as a peer dependency, make sure to have a recent version installed. Babylon.js support is coming soon! 🚀

Then, create an instance of the XR console:

const xrConsole = XRConsoleFactory.getInstance().createConsole({
	pixelWidth: 1024,
	pixelHeight: 512,
	actualWidth: 2,
	actualHeight: 1,
});

The xrConsole object created extends THREE.Object3D, and can be used as such. After a console is set up, simply use console.log() as usual, and the logs will be intercepted and reflected on the xrConsole.

API Reference

The following classes are exported by LogXR, and are available for use in your WebXR projects:

XRConsoleFactory

The XRConsoleFactory class provides a factory method to create instances of XRConsole, and manage the message queue that all instances of XRConsole read from.

Properties

maxNumMessages

maxNumMessages: number;

Gets or sets the maximum number of messages that can be stored by the XRConsoleFactory. The default value is 100.

Methods

static getInstance(): XRConsoleFactory

static getInstance(): XRConsoleFactory

Gets a singleton instance of the XRConsoleFactory.

createConsole(options: XRConsoleOptions): XRConsole

createConsole(options: XRConsoleOptions): XRConsole

Creates a new instance of XRConsole with the specified options.

getMessages(messageTypes: MessageType[], count: number): Message[]

getMessages(messageTypes: MessageType[], count: number): Message[]

Gets the messages in the message queue that match the specified message types. The number of messages returned is limited by the count parameter.

XRConsole

The XRConsole class represents the XR console and provides the necessary functionality for rendering console logs in a WebXR environment.

Properties

panelMesh: Mesh

The panelMesh property represents the mesh object that serves as the panel for the console.

needsUpdate: boolean

The needsUpdate property is a flag that indicates whether the console canvas needs to be updated.

Methods

constructor(options?: XRConsoleOptions)

constructor(options?: XRConsoleOptions)

Creates a new instance of the XR console with the specified options.

render()

render(): void

Renders the console to the canvas.

XRConsoleOptions

The XRConsoleOptions interface represents a set of options that can be passed to the XRConsole constructor to customize its appearance and behavior.

Properties

  • pixelWidth?: number: The width of the canvas in pixels. Default is 1024.
  • pixelHeight?: number: The height of the canvas in pixels. Default is 512.
  • actualWidth?: number: The width of the plane in meters. Default is 1.
  • actualHeight?: number: The height of the plane in meters. Default is 1.
  • fontSize?: number: The font size of the text in pixels. Default is 16.
  • horizontalPadding?: number: The horizontal padding of the text in pixels. Default is 5.
  • verticalPadding?: number: The vertical padding of the text in pixels. Default is 5.
  • showTimestamp?: boolean: Whether or not to show the timestamp. Default is true.
  • messageType?: MessageType: The type of messages to show. Default is MessageType.All.
  • backgroundColor?: string: The background color of the canvas. Default is '#222222'.
  • logColor?: string: The color of the log messages. Default is '#FFFFFF'.
  • errorColor?: string: The color of the error messages. Default is '#D0342C'.
  • warningColor?: string: The color of the warning messages. Default is '#FF7900'.
  • infoColor?: string: The color of the info messages. Default is '#76B947'.
  • debugColor?: string: The color of the debug messages. Default is '#0E86D4'.

MessageType

The MessageType enumeration is used to specify the type of messages that should be displayed in the XR console.

Values

  • All: Displays all messages.
  • Log: Displays only log messages.
  • Error: Displays only error messages.
  • Warning: Displays only warning messages.
  • Info: Displays only info messages.
  • Debug: Displays only debug messages.

License

MIT License © 2023 Felix Zhang