Rust backend: SQLite (WAL mode, 8 tables), vault encryption (Argon2id + AES-256-GCM), settings/connections/credentials services, 19 Tauri command wrappers. 46/46 tests passing. Vue 3 frontend: unlock/create vault flow, Pinia app store, Tailwind CSS v4 dark theme with Wraith branding. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
38 lines
1.4 KiB
Markdown
38 lines
1.4 KiB
Markdown
# @codemirror/view [](https://www.npmjs.org/package/@codemirror/view)
|
|
|
|
[ [**WEBSITE**](https://codemirror.net/) | [**DOCS**](https://codemirror.net/docs/ref/#view) | [**ISSUES**](https://github.com/codemirror/dev/issues) | [**FORUM**](https://discuss.codemirror.net/c/next/) | [**CHANGELOG**](https://github.com/codemirror/view/blob/main/CHANGELOG.md) ]
|
|
|
|
This package implements the DOM view component for the
|
|
[CodeMirror](https://codemirror.net/) code editor.
|
|
|
|
The [project page](https://codemirror.net/) has more information, a
|
|
number of [examples](https://codemirror.net/examples/) and the
|
|
[documentation](https://codemirror.net/docs/).
|
|
|
|
This code is released under an
|
|
[MIT license](https://github.com/codemirror/view/tree/main/LICENSE).
|
|
|
|
We aim to be an inclusive, welcoming community. To make that explicit,
|
|
we have a [code of
|
|
conduct](http://contributor-covenant.org/version/1/1/0/) that applies
|
|
to communication around the project.
|
|
|
|
## Usage
|
|
|
|
```javascript
|
|
import {EditorView} from "@codemirror/view"
|
|
import {basicSetup} from "codemirror"
|
|
|
|
const view = new EditorView({
|
|
parent: document.querySelector("#some-node"),
|
|
doc: "Content text",
|
|
extensions: [basicSetup /* ... */]
|
|
})
|
|
```
|
|
|
|
Add additional extensions, such as a [language
|
|
mode](https://codemirror.net/#languages), to configure the editor.
|
|
Call
|
|
[`view.dispatch`](https://codemirror.net/docs/ref/#view.EditorView.dispatch)
|
|
to update the editor's state.
|