# ipts

> IPFS Tagging Service

Latest version **0.0.5** (published 2017-11-27) · ISC license · 0 weekly downloads

## Install

```sh
npm install ipts
pnpm add ipts
yarn add ipts
bun add ipts
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.5 |
| Published | 2017-11-27 |
| First published | 2017-10-30 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Computes |
| Maintainers | royvandewater, peterdemartini, iamruinous, chrismatthieu |

## Links

- npm: https://www.npmjs.com/package/ipts
- npm.io page: https://npm.io/package/ipts

## Dependencies (1)

- [r2](https://npm.io/package/r2.md) ^2.0.0

## Recent versions

- 0.0.5 (latest) — 2017-11-27
- 0.0.4 — 2017-11-23
- 0.0.3 — 2017-11-22
- 0.0.2 — 2017-10-30

## README

<p align="center">
  <a href="https://ipts.io"><img src="./logo/ipts-logo.png"  width="150px"/></a>
</p>

# IPTS

> InterPlanetary Tagging Service -- ipts.io

IPTS is the tagging service for associating git-style tags (i.e. head) with IPFS hashes and visa versa.

## Install

````
npm install ipts
````

````
const { get, set, remove } = require("ipts")

const run = async () => {
  console.log('get', await get("hellothere"))
  console.log('set', await set("hellothere", Math.random() * 1000))
  console.log('get', await get("hellothere"))
  console.log('remove', await remove("hellothere"))
  console.log('get', await get("hellothere"))
}

run()
````

---
_Source: https://npm.io/package/ipts · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
