@anchor-chat/anchor-api

A package that allows you to communicate with the Anchor Chat

Usage no npm install needed!

<script type="module">
  import anchorChatAnchorApi from 'https://cdn.skypack.dev/@anchor-chat/anchor-api';
</script>

README

AnchorAPI Build Status

API for the Anchor chat. You use this to create bots and custom clients / integrations

W.I.P

Currently this API is in a very early stage and functionality + API may change and break often.

Installation

npm i @anchor-chat/anchor-api

Browsers

if you want to use this in the browser add this to the end of your <body>
<script src="https://anchor-chat.github.io/AnchorAPI/dist/anchor-api.min.js"></script>
This includes IPFS and OrbitB

Docs

Docs can be found here: https://anchor-chat.github.io/AnchorAPI/

Getting started

This is how you start:

const { AnchorAPIBuilder } = require("@anchor-chat/anchor-api");

new AnchorAPIBuilder()
    .setDirectory(".anchor") // Not needed but recommended
    .setCredentials("login", "password")
    .createAccount() // Or login()
    .then(async (api) => {
        // Magic!
    });

Look at the docs for more info