0.1.1 • Published 3 years ago

matrix-blog v0.1.1

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

matrix-blog

A library to interact with a Matrix server in a way that treats it as a backend for a blog.

See my blog https://evolved.systems/ for a write-up and an example of its use.

Example (node.js)

import {BlogService, MatrixClient} from 'matrix-blog';
import fetch from 'node-fetch';

const serverName = 'example.com';
const homeserverUrl = 'https://example.com';
const blogSpaceId = '!somethingsomething:example.com';
const accessToken = 'YOUR_ACCESS_TOKEN';

const client = new MatrixClient(serverName, homeserverUrl, fetch);
const blog = new BlogService(client);

client.setAccessToken(accessToken);

// Fetches blog posts along with their contents.
blog.getFullPosts(blogSpaceId).then(posts => {
  console.log(posts);
});

License

Written by Rafał Hirsz. This package is licensed under the terms of the MIT license.

0.1.1

3 years ago

0.1.0

3 years ago