D
Deno
Change Theme
Search Answer Overflow
Login
ciscoheat
Posts
Comments
D
Deno
•
Created by ciscoheat on 4/7/2025 in
#help
When to use deno add compared to import with a prefix?
As the title says, I can import like this:
import
{ parse }
from
"jsr:@std/csv/parse"
;
import
{ parse }
from
"jsr:@std/csv/parse"
;
And it will work, but there is also
deno add
, which I'm recommended to use if I import from
@std/csv/parse
. When should I use
deno add
?
3 replies