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

rbxts-transform-print

v0.1.1

Published

A TypeScript AST transformer for [roblox-ts](https://roblox-ts.com/) that enhances debugging by replacing `$print` calls with formatted `print` statements, including file names, line numbers, and configurable log levels.

Downloads

158

Readme

$print Transformer for roblox-ts

A TypeScript AST transformer for roblox-ts that enhances debugging by replacing $print calls with formatted print statements, including file names, line numbers, and configurable log levels.

I want to say that I will only work on this whenever I feel like it or when I need to improve it in any way. Feel free to contribute tho! I will try to cooperate as much as I can.

Table of Contents

Installation

Install the transformer via npm:

npm install --save-dev rbxts-transform-print

Usage

To use the transformer in your roblox-ts project, you need to add it to your tsconfig.json file under the plugins section:

{
  "compilerOptions": {
    // ... other compiler options ...
    "plugins": [
      {
        "transform": "rbxts-transform-print",
        "showFileExtension": "full",
        "showPath": "full",
        "showLine": true,
        "logLevel": 0
      }
    ]
  }
}

Configuration

The transformer supports the following configuration options:

  • showFileExtension: Controls how the file extension is displayed.

    • "full" (default): Includes the full file extension.
    • "short": Removes the extension from the file name (e.g. file.server.ts becomes file.server).
    • "off": Removes the entire file extension (e.g. file.server.ts becomes file).
  • showPath: Controls how the file path is displayed.

    • "full" (default): Displays the full path relative to the project root (e.g. [src/server/file.ts]).
    • "short": Displays only the parent directory and file name (e.g. [server/file.ts]).
    • "off": Displays only the file name (e.g. [file.ts]).
  • showLine: Includes the line number in the output.

    • true (default): Includes the line number.
    • false: Omits the line number.
  • logLevel: Sets the maximum log level for $print statements to be included.

    • number (default: Infinity): Only $print calls with a logLevel less than or equal to this value will be emitted.
    • NOTE: Not providing a log level to a $print call will force the $print call to be emitted!

Examples

Basic Usage

In your TypeScript code, use $print instead of print:

$print("Hello, world!");

After transformation, this will become:

print("[src/server/main.server.ts:1]", "Hello, world!")

Using Log Levels

You can control whether a $print statement is included based on its log level:

$print("This is a message", 1);
$print("This is another message", 0);

If your logLevel in the configuration is set to 0, only the second message will be printed.

Configuration Options

showFileExtension

  • full:

    print("[src/server/main.server.ts:1]", "Message")
  • short:

    print("[src/server/main.server:1]", "Message")
  • off:

    print("[src/server/main:1]", "Message")

showPath

  • full:

    print("[src/server/main.server.ts:1]", "Message")
  • short:

    print("[server/main.server.ts:1]", "Message")
  • off:

    print("[main.server.ts:1]", "Message")

showLine

  • true:

    print("[src/server/main.server.ts:1]", "Message")
  • false:

    print("[src/server/main.server.ts]", "Message")

License

This project is licensed under the MPL-2.0 License. See the LICENSE file for details.