A modern runtime for JavaScript and TypeScript.
Find a file
Daniel Osvaldo Rahmanto 2ec057b3e0
fix(ext/node): sqlite:backup compatibility (#31610)
Notable changes:
- Respect progress callback function option.
- Set default backup rate to 100 to follow Node's implementation.
- Various validation and error handling.

Note that the op implementation in this PR is still sync.

Given this code:
```js
import { backup, DatabaseSync } from "node:sqlite";

const populate = (database, rows) => {
  database.exec("CREATE TABLE test (id INTEGER PRIMARY KEY, name TEXT);");
  let values = "";
  for (let i = 0; i < rows; i++) {
    values += `(${i}, 'Name ${i}'),`;
  }
  values = values.slice(0, -1);
  database.exec(`INSERT INTO test (id, name) VALUES ${values}`);
};

const backupPath = "backup.sqlite";
const database = new DatabaseSync(":memory:");
populate(database, 1000);

const t0 = performance.now();
await backup(database, backupPath, { rate: 1 });
const t1 = performance.now();
database.close();
console.log(`Backup completed in ${(t1 - t0).toFixed(2)} ms`);
```

Results:
```bash
# Node.js v25.2.1
➜ node ./backup-benchmark.js
Backup completed in 0.71 ms

# This PR (debug build mode)
➜ ddeno -A ./backup-benchmark.js
Backup completed in 0.71 ms

# Deno v2.6.0
➜ deno -A ./backup-benchmark.js
Backup completed in 1272.16 ms
```

The current implementation is slow because it sleeps 250ms after each
`sqlite3_backup_step` call.
2025-12-16 15:26:12 +07:00
.cargo ci: fix Windows build (#30816) 2025-09-23 00:31:14 +00:00
.devcontainer feat(ext/fetch): add support for fetch on unix sockets (#29154) 2025-05-13 18:06:17 +02:00
.github ci: use bigger Linux ARM64 runners (#31622) 2025-12-15 15:14:48 -08:00
bench_util 2.6.1 (#31615) 2025-12-15 13:45:57 +01:00
cli fix(check): regression with tsgo and node globals (#31621) 2025-12-15 18:30:00 -05:00
docs feat(unstable): typescript-go integration for deno check (#30920) 2025-10-20 09:59:54 -07:00
ext fix(ext/node): sqlite:backup compatibility (#31610) 2025-12-16 15:26:12 +07:00
libs 2.6.1 (#31615) 2025-12-15 13:45:57 +01:00
runtime 2.6.1 (#31615) 2025-12-15 13:45:57 +01:00
tests fix(ext/node): sqlite:backup compatibility (#31610) 2025-12-16 15:26:12 +07:00
tools ci: update publish script (#31617) 2025-12-15 19:25:33 +00:00
.dlint.json chore: enable no-console dlint rule (#25113) 2024-08-20 15:14:37 -04:00
.dprint.json feat: include @types/node type declarations out of the box (#31502) 2025-12-09 11:58:00 +01:00
.editorconfig chore(tests): Remove vestiges of cli/tests folder (#22712) 2024-03-05 13:49:21 -07:00
.gitattributes
.gitignore feat(ext/web): transferable {Readable,Writable,Transform}Stream (#31126) 2025-12-08 12:31:43 +00:00
.gitmodules chore(ext/node): reorg node compat test CI check (#29893) 2025-06-27 21:06:18 +09:00
.rustfmt.toml chore: update to edition 2024 (#29923) 2025-07-02 17:59:39 -07:00
Cargo.lock 2.6.1 (#31615) 2025-12-15 13:45:57 +01:00
Cargo.toml 2.6.1 (#31615) 2025-12-15 13:45:57 +01:00
CLAUDE.md chore: allow triggering pr generation manually, tweak pr generation workflow, add claude.md (#31217) 2025-11-06 20:24:40 +00:00
import_map.json chore: update submodule std version (#30676) 2025-09-11 17:48:32 +09:00
LICENSE.md chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
README.md chore: update "Build from source" link in README (#29258) 2025-05-12 15:41:53 +09:00
Releases.md 2.6.1 (#31615) 2025-12-15 13:45:57 +01:00
rust-toolchain.toml Revert "chore: Rust 1.91.1 (#31165)" (#31548) 2025-12-10 00:36:30 +00:00

Deno

Twitter badge Bluesky badge Discord badge YouTube badge

the deno mascot dinosaur standing in the rain

Deno (/ˈdiːnoʊ/, pronounced dee-no) is a JavaScript, TypeScript, and WebAssembly runtime with secure defaults and a great developer experience. It's built on V8, Rust, and Tokio.

Learn more about the Deno runtime in the documentation.

Installation

Install the Deno runtime on your system using one of the commands below. Note that there are a number of ways to install Deno - a comprehensive list of installation options can be found here.

Shell (Mac, Linux):

curl -fsSL https://deno.land/install.sh | sh

PowerShell (Windows):

irm https://deno.land/install.ps1 | iex

Homebrew (Mac):

brew install deno

Chocolatey (Windows):

choco install deno

WinGet (Windows):

winget install --id=DenoLand.Deno

Build and install from source

Complete instructions for building Deno from source can be found here.

Your first Deno program

Deno can be used for many different applications, but is most commonly used to build web servers. Create a file called server.ts and include the following TypeScript code:

Deno.serve((_req: Request) => {
  return new Response("Hello, world!");
});

Run your server with the following command:

deno run --allow-net server.ts

This should start a local web server on http://localhost:8000.

Learn more about writing and running Deno programs in the docs.

Additional resources

  • Deno Docs: official guides and reference docs for the Deno runtime, Deno Deploy, and beyond.
  • Deno Standard Library: officially supported common utilities for Deno programs.
  • JSR: The open-source package registry for modern JavaScript and TypeScript
  • Developer Blog: Product updates, tutorials, and more from the Deno team.

Contributing

We appreciate your help! To contribute, please read our contributing instructions.