Convert Sub hosting user code to commands
How to remove `.ts` extension form file name
import { UsersServices } from "#services/users.services.ts"
import { UsersServices } from "#services/users.services.ts"
Workspace option inconsistency?
workspace or workspaces.
when the option is workspaces:
deno publish: recognizes the folder as a workspace, attempts to publish all packages
npx jsr publish: detects workspaces, but ignores it ("The "workspaces" field was ignored. Use "workspace" instead."), attempts to find name, version and exports...Deno + Puppeteer causing compiler issues.
vscode npm import not recognizing all package contents

Mongoose Type Error
Can not resolve types from npm:identifier with peerDependency

How to use crypto generateKeyPairSync?
generateKeyPairSync work, but it fails.
The sample code at the bottom of https://docs.deno.com/api/node/crypto/~/generateKeyPairSync does not work on deno 1.44.4 (MacOS Sonoma 14.5 M2 chip). I get:
```sh
error: Uncaught (in promise) Error: Not implemented: crypto.PrivateKeyObject.prototype.export...Installation directory empty | Windows 10 | PowerShell installation using github guide
Is there any way to force a Deno dependency to use a specific version of std?
npm: identifier is trying to use a node lib that only exisits up to std v0.177.0, specifically the tty lib. Our main std version is in 0.244.0 specified in our import_map.json file.
Is there any way to specify this 3rd party dep to use the std version it requires to work?...Share a data between multiple instances Deno Deploy
invalid peer certificate: UnknownIssuer
error trying to connect: invalid peer certificate: UnknownIssuer
I've set DENO_TLS_CA_STORE=system....DENO_FUTURE=1 / Deno 2 in deno subhosting
Testing Deno cron locally?
deno cache
Cannot find module Error
Cannot find module 'https://deno.land/std@0.97.0/http/server.ts' or its corresponding type declarations.
It works, so something is returned on the localhost page or in a get method, but can I fix this error somehow?
```import { serve } from "https://deno.land/std@0.97.0/http/server.ts";...Deno loading NPM module oracledb .node files with incorrect architecture
oracledb NPM module locally, v6.5.1 (latest), and when initializing the library in "thick client mode", the module loader is incorrectly trying to load in the arm64 *.node files locally instead of the darwin-x86.node version, even though my terminal is configured to run in x86 mode with "env /usr/bin/arch -x86_64 /bin/zsh --login" which is how I got it working in NodeJS. NodeJS correctly pulls in the darwin-x86.node version, but I don't see any way to run Deno in x86-64 mode, even though my terminal is in that mode. Any ideas?
Thanks!...
`deno compile` offline [Solved]
deno compile a.js outside the sandbox. Works fine.
- I copy $HOME/.cache/deno into the sandbox
- I copy $TMP into the sandbox
- I download denort-x86_64-unknown-linux-gnu.zip and copy it into the sandbox...node stream.Readable.on not a function.
.on("data"). This method does not seem to exist in Deno. What should we use as a replacement and is it compatible with node?Event Loop for a bot