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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@agreatfool/obsidian-post-gallery

v0.0.6

Published

In post gallery for obsidian

Readme

obsidian-post-gallery

Pre-conditions

  • This plugin only supports OSX
  • Post need to have frontmatter, and front matter need to contain path, the relative path to your vault
  • Post's dir need to contain the folder assets
  • Pictures which would be displayed in the gallery need to be put in one folder under the assets
    • /${path}/assets/gallery00
    • /${path}/assets/gallery01

frontmatter example

---
uuid: "6CF41F914BCB4B43B2665684DF81E08C"
path: "/album-test-post"
date: "2019-01-08"
slug: "album-test-post"
title: "Album test post"
---

How to use

Install

$ yarn global add @agreatfool/obsidian-post-gallery
$ obsidian-post-gallery-install -v ${your_vault_path}

Reopen your obsidian

  • Edit the post, add frontmatter as described above
  • Put images under the folder as described above
  • Edit the post, add post-gallery block

Example

Only gallery name specified, others use default value (rowHeight: 240, margins: 5):

```post-gallery
name: gallery00
```

Specified the "rowHeight" as 120, and "margins" between images as 10

```post-gallery
name: gallery00
rowHeight: 120
margins: 10
```

Click the image in the gallery would open the OSX default preview app

Others

Credits

This plugin is using Justified Gallery

install.js

$ obsidian-post-gallery-install -h
Usage: install [options]

Obsidian plugin "obsidian-post-gallery" installer, help to install the plugin

Options:
  -V, --version      output the version number
  -v, --vault <dir>  directory of target vault
  -h, --help         display help for command

How to build & publish

$ npm run dev
$ git add .
$ git commit -m "..."
$ npm version patch
$ npm publish
$ git push origin master --verbose