Replies: 1 comment
-
eg. This will work: > deno info https://deno.land/x/oak
Download https://deno.land/x/oak
Warning Implicitly using latest version (v11.1.0) for https://deno.land/x/oak
Download https://deno.land/x/oak@v11.1.0
error: module could not be found Note the error is about not finding a module with no name. If I add > deno info https://deno.land/x/oak/mod.ts
local: /home/tiffany/.cache/deno/deps/https/deno.land/0bb863a66c42616061b2790dffe04fd7a7a417c277f17a7cf0c5529b8626bfdb
emit: /home/tiffany/.cache/deno/gen/https/deno.land/0bb863a66c42616061b2790dffe04fd7a7a417c277f17a7cf0c5529b8626bfdb.js
type: TypeScript
dependencies: 76 unique (total 784.95KB)
https://deno.land/x/oak@v7.3.0/mod.ts (1.84KB)
├─┬ https://deno.land/x/oak@v7.3.0/application.ts (17.23KB)
│ ├─┬ https://deno.land/x/oak@v7.3.0/context.ts (6.8KB)
│ │ ├── https://deno.land/x/oak@v7.3.0/application.ts *
│ │ ├─┬ https://deno.land/x/oak@v7.3.0/cookies.ts (9.18KB)
│ │ │ ├─┬ https://deno.land/x/oak@v7.3.0/keyStack.ts (2.37KB)
│ │ │ │ ├─┬ https://deno.land/x/oak@v7.3.0/deps.ts (1.66KB)
│ │ │ │ │ ├── https://deno.land/std@0.94.0/bytes/mod.ts (4.73KB)
│ │ │ │ │ ├─┬ https://deno.land/std@0.94.0/hash/mod.ts (757B)
│ │ │ │ │ │ ├─┬ https://deno.land/std@0.94.0/hash/_wasm/hash.ts (1.81KB)
│ │ │ │ │ │ │ ├── https://deno.land/std@0.94.0/encoding/base64.ts (1.88KB)
│ │ │ │ │ │ │ ├── https://deno.land/std@0.94.0/encoding/hex.ts (3.1KB)
│ │ │ │ │ │ │ ├── https://deno.land/std@0.94.0/hash/hasher.ts (293B)
│ │ │ │ │ │ │ └─┬ https://deno.land/std@0.94.0/hash/_wasm/wasm.js (149.25KB)
│ │ │ │ │ │ │ └── https://deno.land/std@0.94.0/encoding/base64.ts *
... You can also add the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am going to use
oak
as a dependency but I have no idea what the latest version is.With a package manager like npm, I can do
npm info the_package versions
Is there anything similar in deno?
Beta Was this translation helpful? Give feedback.
All reactions