Skip to content

Commit

Permalink
📝 Update grammar [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
AnandChowdhary authored May 15, 2020
1 parent 7c822d2 commit 9955012
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,20 @@ await checkIfNameIsAvailable("abc"); // false
await checkIfNameIsAvailable("your-package-name"); // true
```

alternatively you can use it directly fron cli by using `deno run`:
Alternatively, you can use it directly from the CLI by using `deno run`:

```bash
deno run --allow-net https://deno.land/x/x_name/mod.ts <your-package-name>
```

Or install using
You can also install it globally using the following:

```bash
deno install --allow-net -n x-name https://deno.land/x/x_name/mod.ts
```
And run with

Then, the package is available to run:

```bash
x-name <your-package-name>
```
Expand Down

0 comments on commit 9955012

Please sign in to comment.