You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 10, 2020. It is now read-only.
Copy file name to clipboardexpand all lines: SPEC/NAME.md
+32-16
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
name API
1
+
Name API
2
2
========
3
3
4
4
#### `publish`
@@ -15,9 +15,10 @@ name API
15
15
16
16
```JavaScript
17
17
{
18
-
resolve:// bool - Resolve given path before publishing. Default: true.
18
+
resolve:// bool - Resolve given path before publishing. Default: true
19
19
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'
21
22
}
22
23
```
23
24
@@ -32,19 +33,35 @@ name API
32
33
33
34
If no `callback` is passed, a promise is returned.
34
35
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.
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).
`value` is a IPNS address, such as: `/ipns/ipfs.io`.
48
65
49
66
`options` is an object that may contain:
50
67
@@ -55,19 +72,18 @@ Example:
55
72
}
56
73
```
57
74
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.
66
76
67
77
If no `callback` is passed, a promise is returned.
0 commit comments