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
> Node.js idiomatic client for [Cloud DNS][product-docs].
10
11
11
-
[Cloud DNS](https://cloud.google.com/dns/docs/) allows you to publish your domain names using Google's infrastructure for production-quality, high-volume DNS services. Google's global network of anycast name servers provide reliable, low-latency authoritative name lookups for your domains from anywhere in the world.
12
+
13
+
14
+
Cloud DNS Client Library for Node.js
12
15
13
16
14
17
*[Cloud DNS Node.js Client API Reference][client-docs]
| Zones |[source code](https://github.com/googleapis/nodejs-dns/blob/master/samples/zones.js)|[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-dns&page=editor&open_in_editor=samples/zones.js,samples/README.md)|
83
+
| List Zones |[source code](https://github.com/googleapis/nodejs-dns/blob/master/samples/listZones.js)|[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-dns&page=editor&open_in_editor=samples/listZones.js,samples/README.md)|
84
+
| Quickstart |[source code](https://github.com/googleapis/nodejs-dns/blob/master/samples/quickstart.js)|[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-dns&page=editor&open_in_editor=samples/quickstart.js,samples/README.md)|
85
+
86
+
98
87
99
88
The [Cloud DNS Node.js Client API Reference][client-docs] documentation
100
89
also contains samples.
@@ -103,10 +92,15 @@ also contains samples.
103
92
104
93
This library follows [Semantic Versioning](http://semver.org/).
105
94
95
+
96
+
97
+
106
98
This library is considered to be in **alpha**. This means it is still a
107
99
work-in-progress and under active development. Any release is subject to
108
100
backwards-incompatible changes at any time.
109
101
102
+
103
+
110
104
More Information: [Google Cloud Platform Launch Stages][launch_stages]
[Cloud DNS](https://cloud.google.com/dns/docs/) allows you to publish your domain names using Google's infrastructure for production-quality, high-volume DNS services. Google's global network of anycast name servers provide reliable, low-latency authoritative name lookups for your domains from anywhere in the world.
9
+
8
10
9
11
## Table of Contents
10
12
11
13
*[Before you begin](#before-you-begin)
12
14
*[Samples](#samples)
13
-
*[Zones](#zones)
15
+
*[List Zones](#list-zones)
16
+
*[Quickstart](#quickstart)
14
17
15
18
## Before you begin
16
19
17
-
Before running the samples, make sure you've followed the steps in the
18
-
[Before you begin section](../README.md#before-you-begin) of the client
19
-
library's README.
20
+
Before running the samples, make sure you've followed the steps outlined in
21
+
[Using the client library](https://github.com/googleapis/nodejs-dns#using-the-client-library).
20
22
21
23
## Samples
22
24
23
-
### Zones
24
25
25
-
View the [source code][zones_0_code].
26
26
27
-
[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-dns&page=editor&open_in_editor=samples/zones.js,samples/README.md)
27
+
### List Zones
28
+
29
+
Lists all zones in the current project.
30
+
31
+
View the [source code](https://github.com/googleapis/nodejs-dns/blob/master/samples/listZones.js).
32
+
33
+
[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-dns&page=editor&open_in_editor=samples/listZones.js,samples/README.md)
34
+
35
+
__Usage:__
36
+
37
+
38
+
`node listZones`
39
+
40
+
41
+
-----
42
+
43
+
44
+
45
+
46
+
### Quickstart
47
+
48
+
Fetches a list of all available zones.
49
+
50
+
View the [source code](https://github.com/googleapis/nodejs-dns/blob/master/samples/quickstart.js).
51
+
52
+
[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-dns&page=editor&open_in_editor=samples/quickstart.js,samples/README.md)
53
+
54
+
__Usage:__
28
55
29
-
__Usage:__`node zones.js --help`
30
56
31
-
```
32
-
zones.js <command>
57
+
`node quickstart`
33
58
34
-
Commands:
35
-
zones.js list Lists all zones in the current project.
36
59
37
-
Options:
38
-
--version Show version number [boolean]
39
-
--help Show help [boolean]
40
60
41
-
Examples:
42
-
node zones.js list Lists all zones in the current project.
43
61
44
-
For more information, see https://cloud.google.com/dns/docs
0 commit comments