-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update readme and publish in @nestdotland
- Loading branch information
Showing
4 changed files
with
47 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
_cache | ||
_cache | ||
eggs-debug.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 - | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |