Questions tagged [deno]

A secure runtime for JavaScript and TypeScript.

Deno is a simple, modern, and secure runtime for JavaScript and TypeScript that uses V8 and is built in Rust.

  • Secure by default. No file, network, or environment access, unless explicitly enabled.
  • Supports TypeScript out of the box.
  • Ships only a single executable file.
  • Has built-in utilities like a dependency inspector (deno info) and a code formatter (deno fmt).
  • Has a set of reviewed (audited) standard modules that are guaranteed to work with Deno deno.land/std
919 questions
-2
votes
1 answer

Why is Node.js not compatible with browsers?

I was reading an article about Deno vs Node on Medium, and I came across this section: The main problem here is that the module system isn’t compatible with browsers. That is the reason for storing dependencies in node_modules and having a…
325
  • 594
  • 8
  • 21
-3
votes
1 answer

How do I create a busy handler in sqlite3 using Deno?

I have multiple processes writing to sqlite db simultaneously using this library: https://github.com/dyedgreen/deno-sqlite I tried setting PRAGMA busy_timeout = 30000 but that didn't fix my problem. I have one long running process that queries db…
chovy
  • 72,281
  • 52
  • 227
  • 295
1 2 3
61
62