https://github.com/swadhinbharat/deno
Deno Library
https://github.com/swadhinbharat/deno
deno utilities
Last synced: about 1 month ago
JSON representation
Deno Library
- Host: GitHub
- URL: https://github.com/swadhinbharat/deno
- Owner: swadhinbharat
- Created: 2021-08-15T17:32:59.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-12-15T08:54:03.000Z (over 2 years ago)
- Last Synced: 2025-10-09T05:55:39.766Z (9 months ago)
- Topics: deno, utilities
- Language: TypeScript
- Homepage: https://deno.land/x/swadhin
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# deno
Deno Library
## run
```
deno run
```
## test
```
deno test # test the file
deno test --coverage=coverage # test with coverage
deno coverage coverage # show coverage
```
## shortcuts
```
# in CMD - purge folder, run test with coverage and show coverage
rd /s/q coverage & deno test --coverage=coverage && deno coverage coverage
# in PowerShell - purge folder, run test with coverage and show coverage
Remove-Item -LiteralPath "coverage" -Force -Recurse; deno test --coverage=coverage; deno coverage coverage
```
## docs
```
deno test --doc # test the documentation of file
```