Add support for Deno
Deno is a pretty solid modern JavaScript runtime that's been making a lot of great progress lately.
Thank you so much for taking the time to share your idea with us and for participating in our community.
Because we have officially announced the sunsetting of Firebase Studio and are currently focusing on the migration process, we are no longer accepting or implementing new feature requests for this product.
We appreciate your support and understanding as we transition to our next chapter.
-
jozef javorsky commented
It would be nice to see Deno(jsr) within backend templates, since a lot of stuff moves nowadays towards intersections of JS/TS spaces...
-
Bdodroid commented
Looks like it's pretty easy to add to a blank project, just got to tweak the dev.nix and launch.json files.
dev.nix:
{ pkgs, ... }: {
channel = "stable-23.11"; # or "unstable"
packages = [
pkgs.deno
];
env = {};
idx = {
extensions = [
"denoland.vscode-deno"
"ms-vscode.js-debug"
];previews = {
enable = true;
previews = { };
};
workspace = {
onCreate = { };
onStart = { };
};
};
}create a launch.json:
{
"version": "0.2.0",
"configurations": [
{
"request": "launch",
"name": "Launch Program",
"type": "node",
"program": "${workspaceFolder}/main.ts",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "/usr/bin/deno",
"runtimeArgs": [
"run",
"--unstable",
"--inspect-wait",
"--allow-all"
],
"envFile": "${workspaceFolder}/.env",
"attachSimplePort": 9229
}
]
}also, don't forget to initialize the Deno configuration:
CTRL+SHIFT+P "Deno: Initialize Workspace Configuration"With those changes it's working pretty well, the only real issue is the Deno package in Nix is a couple versions behind.