Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kt3k/deno_snippets
random deno snippets
https://github.com/kt3k/deno_snippets
Last synced: 19 days ago
JSON representation
random deno snippets
- Host: GitHub
- URL: https://github.com/kt3k/deno_snippets
- Owner: kt3k
- License: mit
- Created: 2021-04-20T10:49:11.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-04-21T05:15:20.000Z (over 3 years ago)
- Last Synced: 2024-10-10T23:36:25.480Z (about 1 month ago)
- Language: TypeScript
- Size: 4.88 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# is_cached.ts
```
Usage: is_cached.tsCheck if the URL is cached in DENO_DIR.
Usually a script is cached when once loaded by deno, but some of urls (e.g. https://deno.land/x/[email protected]/cli.ts ) can't be cached in DENO_DIR for unknown reason. This script is a tool for finding which can be cached and which can't.
```# list_deps.ts
```
Usage: list_deps.tsLists all specifier which the URL depends on. Simplified version of `deno info `.
```