Mrcool 🇵🇸
Mrcool 🇵🇸
DDeno
Created by spac3crawler on 3/9/2025 in #help
Issues installing npm packages
it seems like the error is coming from ts server instead of deno lsp, maybe you didn't deactivate it correctly
7 replies
DDeno
Created by werthan on 2/27/2025 in #help
Deno Compile Can't Find Node Module
ah yes, this does work
import ld from "npm:lodash@^4.17.21";
console.log(ld.eq);
import ld from "npm:lodash@^4.17.21";
console.log(ld.eq);
7 replies
DDeno
Created by werthan on 2/27/2025 in #help
Deno Compile Can't Find Node Module
1st issue, the compiled executale can't find a file you can try to include it deno compile --include node_modules/@aws-sdk myfile.ts 2nd issue deno is correct lodash doens't export eq on that version you can check with
import * as ld from "npm:lodash@^4.17.21";
console.log(ld);
import * as ld from "npm:lodash@^4.17.21";
console.log(ld);
7 replies
DDeno
Created by werthan on 2/27/2025 in #help
Deno Compile Can't Find Node Module
Maybe try to use --include flag , I think if the file is a dynamic import that's not statically analyzable it can't include it automatically
7 replies
DDeno
Created by Thomas on 3/2/2025 in #help
Is dynamic import in global installed CLI broken?
I think deno install defaults to --no-config , you can try removing that from the installed script
3 replies
DDeno
Created by bobc on 2/24/2025 in #help
emit in Deno 2.0
2 replies
DDeno
Created by Skrillx on 2/23/2025 in #help
deno_blog is broken
you can use "vendor": true in deno.json for now and patch the dependencies while you or someone else fix upstream
12 replies
DDeno
Created by WaterKnight on 2/21/2025 in #help
How to import GoogleAIFileManager from @google/generative-ai/files
5 replies
DDeno
Created by WaterKnight on 2/21/2025 in #help
How to import GoogleAIFileManager from @google/generative-ai/files
This should work
import {
GoogleAIFileManager,
} from "npm:@google/generative-ai@0.21.0/server";
const files = new GoogleAIFileManager(GOOGLE_API_KEY);
import {
GoogleAIFileManager,
} from "npm:@google/generative-ai@0.21.0/server";
const files = new GoogleAIFileManager(GOOGLE_API_KEY);
5 replies
DDeno
Created by WaterKnight on 2/21/2025 in #help
How to import GoogleAIFileManager from @google/generative-ai/files
You don't need esm, its not recommended its hash changes from time to time it gets annoying
5 replies
DDeno
Created by vrugtehagel on 2/20/2025 in #help
Read file as text in JSR package (easy with NPM, not Deno)
Also the url of the file ends being a local one , not a remote https url
12 replies
DDeno
Created by vrugtehagel on 2/20/2025 in #help
Read file as text in JSR package (easy with NPM, not Deno)
console.log(await fetch(import.meta.resolve("./b.txt")).then((r) => r.text()));
console.log(await fetch(import.meta.resolve("./b.txt")).then((r) => r.text()));
12 replies
DDeno
Created by vrugtehagel on 2/20/2025 in #help
Read file as text in JSR package (easy with NPM, not Deno)
I read the file like this
12 replies
DDeno
Created by vrugtehagel on 2/20/2025 in #help
Read file as text in JSR package (easy with NPM, not Deno)
It seems to work , u can test this package import * as jsr_test from "@sigmasd/jsr-test";
12 replies
DDeno
Created by Char on 12/15/2024 in #help
Linux Zip Compression From CLI
You can use https://jsr.io/@zip-js/zip-js which don't require zip cli, its pure js
6 replies
DDeno
Created by Gyong on 11/19/2024 in #help
How to install deno with auto yes?
curl -fsSL https://deno.land/install.sh | sh -s -- -y (chatgpt)
6 replies
DDeno
Created by TheYuriG on 11/18/2024 in #help
How can I do simple image recognition with Deno?
There are simple ways like looking for pixels colors if a yellow object is inside a dark background you can find it
6 replies
DDeno
Created by Gyong on 11/19/2024 in #help
How to install deno with auto yes?
No description
6 replies
DDeno
Created by Gyong on 11/19/2024 in #help
How to install deno with auto yes?
it has a yes option
6 replies
DDeno
Created by TheYuriG on 11/18/2024 in #help
How can I do simple image recognition with Deno?
and there are many models to choose from
6 replies