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

@micropub-endpoint/core

v1.2.1

Published

A micropub endpoint

Readme

Micropub Endpoing

WARNING: Very very alpha right now do not use. Thanks.

What is this?

This is a nodejs micropub endpoint that can either be run as a standalone endpoint and data retreived via a rest api, or as a module in an express project.

It includes a bunch of cool features (or I think they're cool anyway...)

Features

  • Supports micropub posting, actions and queries
  • Media endpoint
  • Automatically downloads images to your local media folder
  • Image resizing
  • Markdown parsing
  • Automatic webmention sending
  • Grabs referenced urls as microformats2
  • Highly exensible via middleware
  • Supports multiple database adapters
  • Realtime updates and data replication

Behind the scenes

This endpoint is powered by RxDB

Image resizing with sharp

Webmentions with send-webmention

Plain text processing with marked

Usage

Standalone

npm install -g grantcodes/micropub-endpoint micropub-endpoint --config=/home/user/micropub-endpoint-config.json

As a node module

npm install grantcodes/micropub-endpoint

const express = require('express') const micropubEndpoint = require('micropub-endpoint') const app = express() const myEndpoint = micropubEndpoint(/config/)

app.use('/micropub', myEndpoint.router) app.listen(80)

Config

Configuration can be done in a json file or passed as an object when using this as a node module

Options

permalinkPattern - String - What your site permalinks look like. Written in express style. Must include year month and day at the moment. Default: :siteBaseUrl/:year/:month/:day/:slug

sendWebmentions - Boolean - Send webmentions automatically or not. Default: true

formatContent - Boolean - Whether or not to format plain text content. Default: true

getRefs - Boolean - Enables parsing of refereced urls. Default: true

downloadExternalMedia - Boolean - Whether or not to download referenced media files (photo, audio and video properties). They will be saved to the default media endpoint. Default: true

syndication - Array - Your syndication providers that will be returned in micropub config queries. Default: []

port - Number - Port to listen on. Default: 80

mediaDir - String - The local media directory. Default: dirname + '/../media'

dbName - String - The database name. Note: Must adhere to RxDB rules. Default: micropubendpoint

dbAdapter - String/Object - The database adapter. Note: To use a different adapter you must also load the appropriate RxDB plugin. Default: websql

imageSizes - Object - A set of sizes to scale images to. should be in the format {name: [width, height]} eg. {thumbnail: [200, 200], large: [1800, 0]}, Note: If you pass 0 as the height the image will retain its original ratio. Default: {}

siteBaseUrl - String(url) - The base url of your website with no trailing slash. Eg. https://grant.codes

endpointBaseUrl - String(url) - The base url of this media endpoint with no trailing slash. Eg. https://micropub.grant.codes or https://grant.codes/micropub

mediaBaseUrl - String(url) - The base url of your media folder. If you are running the endpoint in standalone mode it will default to {{endpointBaseUrl}}/static. If you are running this as a module you should statically serve the mediaDir and set this option

dbPassword - String - The database password

tokenEndpoint - String(url) - Your token endpoint. Used for authenticating requests

dangerousDevMode - Boolean - Set to true and the endpoint will skip checking tokens. It may do more in the future

mediaEndpoint - String(url) - If you want to post media to a different media endpoint pass the url here and all file storage will be handled by your media endpoint. No image resizing will be done.