https://github.com/kevcui/google-domains-cli
:mag: Check domain availability using Google Domains in your terminal
https://github.com/kevcui/google-domains-cli
Last synced: 2 months ago
JSON representation
:mag: Check domain availability using Google Domains in your terminal
- Host: GitHub
- URL: https://github.com/kevcui/google-domains-cli
- Owner: KevCui
- License: wtfpl
- Created: 2022-07-23T08:51:40.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-23T09:14:04.000Z (about 3 years ago)
- Last Synced: 2023-03-09T21:03:11.421Z (over 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# translate-cli
> Check domain availability using Google Domains in your terminal.
## Table of Contents
- [Dependency](#dependency)
- [Installation](#installation)
- [Configuration](#configuration)
- [Usage](#usage)
- [Examples](#examples)## Dependency
- Chrome/Chromium
- [puppeteer](https://github.com/puppeteer/puppeteer/)## Installation
```bash
$ npm i puppeteer
```## Configuration
- Set environment variable `CHROME` with Chrome/Chromium path in shell rc file:
```bash
export CHROME=
```## Usage
```
$ ./checkGoogleDomains.js
```### Examples
```bash
$ ./checkGoogleDomains.js 'google.domains'
Registered$ ./checkGoogleDomains.js 'google.damn'
This ending .DAMN doesn't exist$ ./checkGoogleDomains.js 'zzz'
Unknown$ ./checkGoogleDomains.js 'zzz1zzz.xyz'
Available
```---