Skip to content
Discussion options

You must be logged in to vote

We can use dependencies without installing on Deno, a simple approach would be to use Poku with npm:poku or esm.sh, for example:

import { assert } from 'npm:poku';

assert(true, '🐷');
import { assert } from 'https://esm.sh/poku';

assert(true, '🐷');

Also, we can running poku command with npm:poku without adding it to dependencies:

deno run --allow-read --allow-env --allow-run npm:poku

So far, using the JSR isn't viable. Let's see the JSR's future:


@yumafuu, I'll add this discussion to the documentation. Thank you for your contribution 🤝

Replies: 4 comments

This comment has been hidden.

This comment has been hidden.

This comment has been hidden.

Comment options

You must be logged in to vote
0 replies
Answer selected by wellwelwel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
2 participants
Converted from issue

This discussion was converted from issue #564 on July 20, 2024 12:19.