lookup-webmention-server

Discover the webmention server for a given URL

Usage no npm install needed!

<script type="module">
  import lookupWebmentionServer from 'https://cdn.skypack.dev/lookup-webmention-server';
</script>

README

Lookup WebMention Server

Travis CI Test Status

Discover the WebMention server for a given URL.

Usage

var lookup = require('lookup-webmention-server');

lookup('http://example.org/blog/post', function (err, url) {
  if (err) {
    // Handle errors
  }

  // do stuff with the URL!
});

API

lookup(target, callback);

The target is the location that you have mentioned and wish to WebMention. The callback parameter is a callback function that is called:

callback(err, url);

The err parameter is any potential error encountered during the HTTP request.

The url parameter is a string containing the URL to the WebMention server.