Skip to content

Commit

Permalink
Update readme and publish in @nestdotland
Browse files Browse the repository at this point in the history
  • Loading branch information
mskian committed Aug 4, 2022
1 parent 1aabe27 commit 9f8b1a6
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 3 deletions.
10 changes: 10 additions & 0 deletions .eggignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.git*/**
.idea/**
.vscode/**
benchmarks/**
eggs-debug.log
.github
LICENSE
deno.json
.vscode
.gitignore
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
_cache
_cache
eggs-debug.log
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ deno task help
```

- install via Deno Modules - <https://deno.land/x/randomwords>
- Learn about deno Script installer - <https://deno.land/manual/tools/script_installer>
- Learn about deno Script installer -
<https://deno.land/manual/tools/script_installer>

```sh
deno install --allow-net --name randomwords https://deno.land/x/randomwords/main.ts
Expand Down Expand Up @@ -78,14 +79,20 @@ randomwords -h
deno uninstall randomwords
```

- Use directly without download or install
- Use directly without download or install Locally by using `deno.land` or `nest.land`

```sh
deno run --allow-net https://deno.land/x/randomwords/main.ts -r
deno run --allow-net https://deno.land/x/randomwords/main.ts -p "Hello World"
deno run --allow-net https://deno.land/x/randomwords/main.ts -h
```

```sh
deno run --allow-net https://x.nest.land/[email protected]/main.ts -r
deno run --allow-net https://x.nest.land/[email protected]/main.ts -p "Hello World"
deno run --allow-net https://x.nest.land/[email protected]/main.ts -h
```

## Credits

- Build CLI Tool with Deno -
Expand Down
26 changes: 26 additions & 0 deletions egg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"$schema": "https://x.nest.land/[email protected]/src/schema.json",
"name": "deno-random-words-cli",
"entry": "./main.ts",
"description": "Get Random Words with Definition and Pronunciation and Get Pronunciation for a Word",
"homepage": "https://github.com/mskian/deno-random-words-cli",
"version": "0.0.2",
"releaseType": null,
"unstable": false,
"unlisted": false,
"files": [
"README.md"
],
"ignore": [
".git",
".github",
"LICENSE",
"deno.json",
".vscode",
".gitignore"
],
"checkFormat": "deno fmt",
"checkTests": false,
"checkInstallation": false,
"check": true
}

0 comments on commit 9f8b1a6

Please sign in to comment.