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

micropub-express

v0.9.1

Published

Provides a Micropub route for Express 4.x

Downloads

40

Readme

Micropub Express

Build Status Coverage Status dependencies Status Known Vulnerabilities js-semistandard-style FOSSA Status

Provides a Micropub route for Express 4.x

Requirements

Node.js requirement is set in package.json (Use eg. installed-check to validate that it complies with your requirements)

Installation

npm install micropub-express --save

Current status

Early alpha

Supported:

  • Creation of content based items and creation of likes

The rest of the CRUD-operations + other more complex operations are yet to be built and the API might change to adopt to the requirements of those. Versioning will stick to Semantic Versioning to clearly communicate such breaking changes.

Usage

var micropub = require('micropub-express');

// Attach the micropub endpoint to "/micropub" or wherever else you want
app.use('/micropub', micropub({

  // Specify what endpoint you want to verify a token with and what the expected identity returned is
  tokenReference: {
    me: 'http://example.com/',
    endpoint: 'https://tokens.indieauth.com/token',
  },

  // And lastly: Do something with the created micropub document
  handler: function (micropubDocument, req) {
    // Do something with the micropubDocument and return a Promise to communicate status of the handling
    return Promise.resolve().then(function () {
      return { url: 'http://example.com/url/to/new/post' };
    });
  }

}));

Advanced Usage

var express = require('express');
var micropub = require('micropub-express');

var app = express();

// Do some Express magic to support multiple Micropub endpoints in the same application
app.param('targetsite', function (req, res, next, id) {
  // Resolve a token reference from the "targetsite" id and return 404 if you find no match
  if (id === 'example.com') {
    req.targetsite = {
      me: 'http://example.com/',
      endpoint: 'https://tokens.indieauth.com/token',
    };
    next();
  } else {
    res.sendStatus(404);
  }
});

app.use('/micropub/:targetsite', micropub({
  logger: logger,          // a logger object that uses the same API as the bunyan module
  userAgent: 'my-app/1.0', // a user-agent that will be prepended to the module's own user-agent to indicate
                           // to IndieAuth endpoints who it is that makes the verification requests
  tokenReference: function (req) {
    // Find the token reference we added to the request object before and return it
    return req.targetsite;
  },
  // And lastly: Do something with the created micropub document
  handler: function (micropubDocument, req) {
    // Do something with the micropubDocument and return a Promise to communicate status of the handling
    return Promise.resolve().then(function () {
      return { url: 'http://example.com/url/to/new/post' };
    });
  }
}));

// Start the Express server on a port, like port 3000!
app.listen(3000);

Options

  • tokenReferencerequired – either an object with two keys, me and endpoint, or a function that receives the request object and returns an object with those two keys. The me key signify what identity it is that's expected for a succesful authorization and the endpoint key indicates what endpoint the token should be verified with. Can also be or return an array of multiple references.
  • handlerrequired – the function that will be called with the handled micropub document and the request object. It's this functions responsibility to actually act on the received data and do something with it. Should return a Promise resolving to an object with a url key containing the url of the created item to indicate success. If the Promise is rejected or the url key is missing or falsy in the resolved Promise, then a 400 error will be returned to indicate failure.
  • userAgentrecommended – a user-agent string like your-app-name/1.2.3 (http://app.example.com/) that gets prepended to the user-agent of micropub-express itself when verifying received tokens against an endpoint
  • queryHandleroptional – a function that will be called whenever a ?q= query is made to the Micropub endpoint. It's this functions responsibility to execute the query and respond with the relevant data. Should return a Promise resolving to an object containing the query result. Keys on the object should not include any [], those will be added in the encoded result where relevant. If the Promise resolves to something falsy, then a 400 error will be returned to indicate that the query type is unsupported. If the Promise is rejected, then a 400 error will be returned to indicate failure.
  • loggeroptional – a bunyan compatible logger, like bunyan itself or some other module. Defaults to bunyan-duckling which logs with console.log() and console.error()

Format of micropubDocument

The format closely matches the JSON-representation of Micropub.

It contains three top level keys:

  • type – an array containing the type that is that's going to be created. Eg. ['h-entry']
  • properties – an object containing all of the microformat properties of the document as arrays containing strings. Eg. content: ['foobar']
  • mp – an object containing all of the micropub directives as arrays containing string. Eg. 'syndicate-to': ['http://twitter.com/example'] for an 'mp-syndicate-to' directive.
  • files – an object that can contain three keys, audio, video, photo, which in turn contains arrays of objects with a filename and a buffer key with the name and content of the files.

Full example:

{
  type: ['h-entry'],
  properties: {
    content: ['hello world'],
  },
  mp: {
    'syndicate-to': ['http://twitter.com/example'],
  },
  files: {
    photo: [
      {
        filename: 'example.jpg',
        buffer: new Buffer() // A Node.js buffer with the content of the file.
      }
    ]
  }
}

Other useful modules

  • format-microformat – a module that takes a micropubDocument as its input and then formats filenames, URL:s and file content from that data so one gets some standard data which one then can publish elsewhere – like to a Jekyll blog or something.
  • github-publish – a module that takes a filename and content and publishes that to a GitHub repository. A useful place to send the formatted data that comes out of format-microformat if one wants to add it to a GitHub hosted Jekyll blog of some kind, like eg. GitHub Pages.

License

FOSSA Status