Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 9670c1a

Browse files
hacdiasdaviddias
authored andcommitted
feat: normalize NAME API (#190)
1 parent 5a21d6c commit 9670c1a

File tree

1 file changed

+32
-16
lines changed

1 file changed

+32
-16
lines changed

SPEC/NAME.md

+32-16
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name API
1+
Name API
22
========
33

44
#### `publish`
@@ -15,9 +15,10 @@ name API
1515

1616
```JavaScript
1717
{
18-
resolve: // bool - Resolve given path before publishing. Default: true.
18+
resolve: // bool - Resolve given path before publishing. Default: true
1919
lifetime: // string - Time duration of the record. Default: 24h
20-
ttl: // string - Time duration this record should be cached
20+
ttl: // string - Time duration this record should be cached
21+
key: // string - Name of the key to be used or Peer ID. Default: 'self'
2122
}
2223
```
2324

@@ -32,19 +33,35 @@ name API
3233

3334
If no `callback` is passed, a promise is returned.
3435

35-
Example:
36+
**Example:**
37+
38+
Imagine you want to publish your website under IPFS. You can use the [Files API](./FILES.md) to publish your static website and then you'll get a multihash you can link to. But when you need to make a change, a problem arises: you get a new multihash because you now have a different content. And it is not possible for you to be always giving others the new address.
39+
40+
Here's where the Name API comes in handy. With it, you can use one static multihash for your website under IPNS (InterPlanetary Name Service). This way, you can have one single multihash poiting to the newest version of your website.
3641

3742
```JavaScript
38-
// TODO
43+
// The address of your files.
44+
const addr = '/ipfs/QmbezGequPwcsWo8UL4wDF6a8hYwM1hmbzYv2mnKkEWaUp'
45+
46+
ipfs.name.publish(addr, function (err, res) {
47+
// You now receive a res which contains two fields:
48+
// - name: the name under which the content was published.
49+
// - value: the "real" address to which Name points.
50+
console.log(`https://gateway.ipfs.io/ipns/${res.name}`)
51+
})
3952
```
4053

54+
This way, you can republish a new version of your website under the same address. By default, `ipfs.name.publish` will use the Peer ID. If you want to have multiple websites (for example) under the same IPFS module, you can always check the [key API](./KEY.md).
55+
4156
#### `resolve`
4257

4358
> Resolve an IPNS name.
4459
4560
##### `Go` **WIP**
4661

47-
##### `JavaScript` - ipfs.name.resolve([options, callback])
62+
##### `JavaScript` - ipfs.name.resolve(value, [options, callback])
63+
64+
`value` is a IPNS address, such as: `/ipns/ipfs.io`.
4865

4966
`options` is an object that may contain:
5067

@@ -55,19 +72,18 @@ Example:
5572
}
5673
```
5774

58-
`callback` must follow `function (err, name) {}` signature, where `err` is an error if the operation was not successful. `name` is an object that contains the IPNS hash and the IPFS hash, such as:
59-
60-
```JavaScript
61-
{
62-
name: "/ipns/QmHash.."
63-
value: "/ipfs/QmHash.."
64-
}
65-
```
75+
`callback` must follow `function (err, name) {}` signature, where `err` is an error if the operation was not successful. `name` is a string that contains the IPFS hash.
6676

6777
If no `callback` is passed, a promise is returned.
6878

69-
Example:
79+
**Example:**
7080

7181
```JavaScript
72-
// TODO
82+
// The IPNS address you want to resolve.
83+
const addr = '/ipns/ipfs.io'
84+
85+
ipfs.name.resolve(addr, function (err, name) {
86+
console.log(name)
87+
// /ipfs/QmQrX8hka2BtNHa8N8arAq16TCVx5qHcb46c5yPewRycLm
88+
})
7389
```

0 commit comments

Comments
 (0)