Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions 11 doc/api/sqlite.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,7 @@ import sqlite from 'node:sqlite';
const sqlite = require('node:sqlite');
```

This module is only available under the `node:` scheme. The following will not
work:

```mjs
import sqlite from 'sqlite';
```

```cjs
const sqlite = require('sqlite');
```
This module is only available under the `node:` scheme.

The following example shows the basic usage of the `node:sqlite` module to open
an in-memory database, write data to the database, and then read the data back.
Expand Down
11 changes: 1 addition & 10 deletions 11 doc/api/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,7 @@ import test from 'node:test';
const test = require('node:test');
```

This module is only available under the `node:` scheme. The following will not
work:

```mjs
import test from 'test';
```

```cjs
const test = require('test');
```
This module is only available under the `node:` scheme.

Tests created via the `test` module consist of a single function that is
processed in one of three ways:
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.