doipjs/README.md

83 lines
3.1 KiB
Markdown
Raw Permalink Normal View History

2020-10-24 08:19:33 -06:00
# doip.js
2024-01-28 02:20:34 -07:00
[![status-badge](https://ci.codeberg.org/api/badges/5907/status.svg)](https://ci.codeberg.org/repos/5907)
[![License](https://img.shields.io/badge/license-Apache--2.0-blue?style=flat)](https://codeberg.org/keyoxide/doipjs/src/branch/main/LICENSE)
[![Mastodon Follow](https://img.shields.io/mastodon/follow/247838?domain=https%3A%2F%2Ffosstodon.org&style=flat)](https://fosstodon.org/@keyoxide)
[![Open Collective backers and sponsors](https://img.shields.io/opencollective/all/keyoxide?style=flat)](https://opencollective.com/keyoxide)
2021-04-22 07:54:28 -06:00
![](static/doip.png)
![](doip.png)
2021-04-22 07:39:39 -06:00
2024-01-28 02:20:34 -07:00
[doip.js](https://codeberg.org/keyoxide/doipjs) allows websites and Node.js projects to verify decentralized online
identities.
2021-04-22 07:44:03 -06:00
2020-11-06 13:49:27 -07:00
Documentation available at [js.doip.rocks](https://js.doip.rocks).
2021-04-22 07:39:39 -06:00
## Installation (node)
Install using **yarn** or **npm**:
```bash
yarn add doipjs
# or
npm install --save doipjs
```
Import the `doip` module in your code:
```javascript
const doip = require('./doipjs')
```
## Installation (browser)
Include the following HTML snippet (requires [openpgp.js](https://openpgpjs.org/)):
```html
<script src="/static/openpgp.min.js"></script>
<script src="/static/doip.min.js"></script>
```
## Quickstart
Run the following javascript:
```javascript
const verifyIdentity = async (url, fp) => {
const claim = new doip.Claim(url, fp)
claim.match()
await claim.verify()
2024-10-14 19:15:36 -06:00
console.log(claim.toJSON())
2021-04-22 07:39:39 -06:00
}
verifyIdentity('dns:doip.rocks', '9f0048ac0b23301e1f77e994909f6bd6f80f485d')
```
2024-01-28 02:20:34 -07:00
This snippet verifies the [doip.rocks](https://doip.rocks) domain as
2021-04-22 07:39:39 -06:00
bidirectionally linked to Yarmo's cryptographic key.
2020-11-06 13:49:27 -07:00
2024-01-28 02:20:34 -07:00
## Contributing
Anyone can contribute!
Developers are invited to:
- fork the repository and play around
- submit PRs to [implement new features or fix bugs](https://codeberg.org/keyoxide/doipjs/issues)
2020-11-06 13:49:27 -07:00
2024-01-28 02:20:34 -07:00
If you are new to contributing to open source software, we'd love to help you! To get started, here's a [list of "good first issues"](https://codeberg.org/keyoxide/doipjs/issues?q=&type=all&state=open&labels=183598) that you could look into.
2020-11-06 13:49:27 -07:00
2024-01-28 02:20:34 -07:00
Everyone is invited to:
2020-11-06 13:49:27 -07:00
2024-01-28 02:20:34 -07:00
- find and [report bugs](https://codeberg.org/keyoxide/doipjs/issues/new/choose)
- suggesting [new features](https://codeberg.org/keyoxide/doipjs/issues/new/choose)
- [help with translations](https://translate.codeberg.org/projects/keyoxide/)
- [improve documentation](https://codeberg.org/keyoxide/keyoxide-docs)
- start using open source software and promote it
2020-11-06 13:49:27 -07:00
2024-01-28 02:20:34 -07:00
Please note that this project has a [Code of Conduct](https://codeberg.org/keyoxide/web/src/branch/main/CODE_OF_CONDUCT.md) that all contributors agree to abide when participating.
2020-11-06 13:49:27 -07:00
2024-01-28 02:20:34 -07:00
## About the Keyoxide project
2020-11-06 13:49:27 -07:00
2024-01-28 02:20:34 -07:00
The Keyoxide project strives for a healthier internet for all and has made its efforts fully [open source](https://codeberg.org/keyoxide). Our [community](https://docs.keyoxide.org/community/) is open and welcoming, feel free to say hi!
2020-11-06 13:49:27 -07:00
2024-10-14 19:15:36 -06:00
Funding for the project comes from the [NLnet foundation](https://nlnet.nl/), [NGI0](https://www.ngi.eu/) and the people supporting our [OpenCollective](https://opencollective.com/keyoxide). The project is grateful for all your support.