Deno

D

Deno

Join the community to ask questions about Deno and get answers from other members.

Join

Unable to deploy Next.js following official guide

hi there 👋 one of deno's main selling points over choosing another runtime like bun is that it promises next.js compatibility, but i haven't yet been able to build and deploy a next.js app with deno. I've tried following this guide from deno but cant get it to work. i filed [a bug report with reproduction steps on the deploy_feedback github here....

How Node.js SQLite works on Deno?

Hello, I'm curious how node:sqlite is supported in Deno? Basically you reflect the APIs exposed by Node.js? Or you get/fetch the code from Node.js and compile it to Deno? Because there are open issues in Node.js for SQLite and thought if those will be reflected in Deno once Node.js deploys them.

How to create private packages in deno and not fall into ERR_UNSUPPORTED_NODE_MODULES_TYPE_STRIPPING

Hi everyone! Maybe someone already solved this problem, but I could not find any information or "how to" guide, ChatGPT did not help as well. The problem: I have few private repositories in gitlab, all uses deno as runtime, I want to share some duplicated typscript code written in deno (i.e. all imports ends with .ts extension, also present libraries like "jsr:@std/testing/bdd"; ) so it cant just be launched with node. Have decided to move shared code to separate repository and make a npm package from it (keyword is npm here). ...

How to use cron?

I have this test repo on deno deploy: ```js import express from 'express' import { cron } from "https://deno.land/x/deno_cron/cron.ts"; const app = express()...

Running vite and a deno server in workspaces

I want to write "deno task dev" and it will then start both the frontend (written with vite) and the deno backend at the same time. the closest i got was this: ```json {...

Instancing Rust Structs in JS and maintaining a list of them in Rust

I am struggling to create an extensions for deno_core that would allow me to create Rust Struct instances via JavaScript, but maintain those instances in Rust. What I mean is this: I have a Rust Struct called Rect that I use as a Resource in deno. For the sake of brevity I will reduce its fields in this example to two coordinates, top and left:...

Lume CMS

Hello, I have an issue when I want to deploy Lume CMS with deno deploy. I have my lume CMS storage config set to the src folder and I followed the documentation steps here https://lume.land/cms/deployment/deno-deploy/ the CMS is live but when. I want to edit the data, it doesn't edit in the src folder but in the root folder. Is it normal? Here is my cms file...

Any way to retrieve org uuid with org access token?

Hi folks, I'm trying to get an org uuid via the API, if possible. I know with a personal access token (ddp_*) you can hit the /organizations endpoint to get a list of orgs a user is in, but I'm not sure if there is a way to get an org's uuid the same way, using an org access token (starting with ddo_*) - Attempting to hit the /organizations endpoint with this just results in an access denied error....

Questions about Subhosting

The last message in the #subhosting channel was that any questions should be sent to support@deno.com. So, I sent the following message last week, but haven't got a response: Hey, I feel like I’ve missed something in the docs, but is there a way to subscribe to a hook when a deployment goes live? When I call the API and get back an ID, then call the URL, I get a "not found" error for a few seconds. Is there a webhook or socket I can subscribe to in order to know when it becomes available?...

Types on transitive dependencies

I'm developing a simple slack application. I'm importing a module like so: ```js import { App, ExpressReceiver } from 'npm:@slack/bolt'...

'deno run' for tasks question/Bug 🐞

Hi I am not sure if this is a bug, so I thought to ask here first. So I understand Deno has both 'run' and 'task' sub command for running tasks. However if there is a 'directory' and a task with same name, I find Deno conflicts and gives directory a precedence:...

Issues installing npm packages

Im attempting to install discord.js (an npm package) via cli using deno install npm:discord.js It says its added successfully and shows up in deno.json, but says I don't have the module installed when I try to use it in a ts file....
No description

Nextjs+prisma on deno deploy !

Is possible to deploy nextjs+prisma on deno deploy ? I ask because I faild to do it even I ran nextjs+prisma in local using deno

Cookie issues

My response header contains a valid set cookie header but the cookie is not being saved in my browser cookie storage

Native file selector for Deno

Hey guys, I am creating a Deno compile executable , and I want the user to be able to select a file from their system. (I only care about MacOS and Windows). The only info I want to get the full path to the file the user is selecting (I don't think this can be done on the web cause of browser security reasons that spoof the full location with FakePath). Is there a way to do this using Deno? Or some sort of 3rd party module or node js module? Thx!...

Best Practice for Windows Service Watchdog (GUI Apps)?

Hi everyone, I'm looking for the best way to create a watchdog service using Deno on Windows. This service needs to: - Run as a Windows service: Ideally, it should start automatically on system boot....

npm:mongodb connection issue, timeout

After facing bson corrupt errors frequently with https://deno.land/x/mongo@v0.33.0/mod.ts we started exploring options and replaced it with npm:mongodb@6.14.3 (latest) but facing connection issues with both Username - Password/X.509 auth options. Has anyone connected to mongodb recently with deno version 2, guide me on setting up the connection. we are facing timeout error with usernamee-password auth mechanism. X.509 has other issues....

Test using png mocks

When using imports with *.png files it will crash denos testing system with a warning:
error: Expected a JavaScript or TypeScript module, but identified a Unknown module. Importing these types of modules is currently not supported.
Specifier: file:///home/zweieuro/Documents/uni/2023_SS/WUI/html_UI/vivaci_ui_deno/client/src/player_life.png
error: Expected a JavaScript or TypeScript module, but identified a Unknown module. Importing these types of modules is currently not supported.
Specifier: file:///home/zweieuro/Documents/uni/2023_SS/WUI/html_UI/vivaci_ui_deno/client/src/player_life.png
...

deno-ts throwing fake errors on new Nextjs App. Can't find any similar issue online.

I think this is an issue with TS configuration? I am trying to follow https://docs.deno.com/examples/next_tutorial/, but it doesn't mention any of these errors, such as the fact that you have to run deno npm:create-next-app@latest with the --skip-install flag. I have just created the Nextjs app and run deno install, as well as created the deno.json. deno task dev works, but there are many errors, such as the fact that I need to write the import React from "react". This didn't go away when I changed set "jsx": "react-jsx" in tsconfig. I also got the errors below: TS2786...

CSS Parsing Error During Next.js Deployment on Deno.

I am facing an issue while deploying my Next.js (15.2.1) application on Deno Deploy. The deployment fails with the following error: Error: The deployment failed: Error parsing 'file:///src/.next/static/css/6c5fadf7446c0717.css': Expression expected at file:///src/.next/static/css/6c5fadf7446c0717.css:1:2 *,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-... ~ ...
No description