问题标签 [deno]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
deno - 如何在 Deno 中指定或覆盖 TypeScript 配置
我开始了一个新的 Deno 项目并遇到了错误
这是由"strictNullChecks": true
TypeScript 配置引起的。因此,我想使用我自己的tsconfig.json
(TypeScript 配置),但不知道如何去做。
ubuntu - 如何在 Ubuntu 上安装 Deno
我运行的命令是:
输出是:
在此之后,我deno
在终端中运行,它给了我一个错误。
谁能解释如何在 Ubuntu 中正确安装 Deno?
javascript - 用 TypeScript 编写时如何查看 Deno 转译的 javascript?
我正在使用 Deno 学习 Typescript,并希望看到 JavaScript 结果。是否有一些我在文档中没有看到的命令行?
ps.:我知道使用 Deno 没有编译步骤,但在某些时候它必须有一个 Javascript 代码,以便 V8 引擎可以运行它。
node.js - 如何在 MacOS 上安装 Deno?
谁能解释如何在 macOS 中正确安装 Deno?
firebase - 将 firebase-admin 与 Deno 一起使用的可能方法
由于几天前 Deno 刚刚发布了稳定版本,有没有可能在 Deno 中使用 firebase-admin 的方法?
visual-studio-code - 如何在 VSCode 中调试 Deno
我们如何配置.vscode/launch.json
调试 Deno 项目?
我在时 VSCode 提供的 IntelliSense 没有为 Deno 提供configurations
选项。或者有这个扩展吗?
javascript - 如何查看当前 deno 版本中使用的 typescript 版本?
我试过了deno -V
,它只给出了 deno 的版本,不包括 typescript 版本。
deno - 如何知道 deno 模块的受欢迎程度
由于 node js 通过 npm 维护它的所有包,我们可以通过每周和整体下载来查看包的受欢迎程度。
在 deno 中,因为所有包都是基于模块的,并且可以通过 deno 站点上的 url 获得。如何了解此类第三方模块的受欢迎程度?
javascript - 使用denon时如何避免权限问题
我正在运行denon,这就像节点中的nodemon,但即使我手动指定了相关标志(特别是--allow-net
标志),我也会遇到权限问题。
如何使用天龙运行我的应用程序,这样我就不必不断重新启动?
javascript - Deno - access web apis
I am bundling my Deno code for the web using deno bundle
and I know the browser has RTCPeerConnection
from the WebRTC API which I would like to use.
I thought Deno was aiming to have web compatibility, so I don't see why WebRTC is not planned to be implemented.
But since it isn't at the moment, how can I tell Deno to trust that this global variable exists and to compile?