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

joplin-plugin-debug-info

v0.3.0

Published

This plugin adds a panel that shows information about the selected notes(s). At present, this information isn't very user-friendly — it's presented roughly as fetched from Joplin's data API.

Downloads

92

Readme

Joplin debug tool

This plugin adds a panel that shows information about the selected notes(s). At present, this information isn't very user-friendly — it's presented roughly as fetched from Joplin's data API.

screenshot: Shows a panel with note properties including deleted_time, updated_time, and actions including delete

This plugin supports both Joplin Desktop >= 2.14 and Joplin Mobile >= 3.0.

Features

Note info panel

This plugin adds a "note info" panel to Joplin's UI. The panel can be hidden with the "View" > "Show/Hide note info" menu item.

The fields shown in the plugin are a subset of the fields stored for different items in Joplin's database.

Showing information for a specific note, notebook, or resource

To show the information for a specific note or resource ID, click on the text box to the right of the ID header: screenshot: Box to the right of "ID" in the table header is circled

Next, paste a new ID (or note link) into the ID box. Finally, click "GO":

Regular expression search

At the bottom of the info panel is a "search" dropdown:

screenshot: Arrow points to the bottom of the input panel

By default, the search tool contained in the dropdown uses a regular expression to search through notes' title and body fields. The fields and type of item can be customized using the options in the "Advanced" dropdown.

A search scans Joplin's database and results are in the order returned by Joplin's data API.

Example searches

  • All notes with an empty body:

    • Search field content: ^$
    • Advanced settings: Notes and fields: body.
  • All SVG resources:

    • Search field content: image/svg
    • Advanced settings: Resources and fields: mime (for MIME type).
  • All notes with nonbreaking spaces:

    • Search field content: \u00A0
    • Advanced settings: Notes and fields: body.
  • Shared and/or published notes:

    • Search field content: 1
    • Advanced settings: Notes and fields: is_shared.
  • Notes from Joplin's webclipper:

    • Search field content: .
    • Advanced settings: Notes and fields: source_url.
    • Explanation: Because a . means "any character", this query searches for all notes with a non-empty source_url. The Joplin webclipper associates a source_url with webclipped notes.