Options
All
  • Public
  • Public/Protected
  • All
Menu

@anchor-chat/anchor-api

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:

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

Look at the docs for more info

Generated using TypeDoc