No description
Find a file
github-actions[bot] cc199757d1
Merge pull request #1794 from nextcloud/dependabot/npm_and_yarn/diff-8.0.4
Chore(deps): Bump diff from 8.0.3 to 8.0.4
2026-03-24 10:56:04 +00:00
.github Merge pull request #1787 from nextcloud/dependabot/github_actions/dorny/paths-filter-4.0.1 2026-03-20 10:57:18 +00:00
.tx
appinfo build(release): 4.13.1 2026-03-18 10:04:55 +01:00
css feat: add SPDX headers 2024-09-18 22:03:46 +02:00
docs/api docs: Update attachment api documentation 2025-08-09 11:35:52 +05:30
img
l10n fix(l10n): Update translations from Transifex 2026-03-12 01:27:43 +00:00
lib fix(performance): Avoid checking existence of default notes folder 3 times 2026-01-30 14:18:34 +01:00
LICENSES feat: add SPDX headers 2024-09-18 22:03:46 +02:00
playwright fix: Update playwright test support 2026-01-26 12:17:13 +00:00
src fix(files): Apply HTML escaping to all user-controlled input before concatenating it into HTML 2026-03-13 11:28:24 +01:00
templates fix: lint with cs-fixer 2025-02-01 10:34:15 +00:00
tests fix: update psalm-baseline to suppress Controller errors 2025-02-01 07:10:18 +00:00
.editorconfig
.eslintrc.js
.gitignore feat: Add playwright tests 2026-01-26 12:17:13 +00:00
.nextcloudignore chore: Add psalm 2024-10-11 07:17:00 +02:00
.php-cs-fixer.dist.php
.stylelintrc.js feat: add SPDX headers 2024-09-18 22:03:46 +02:00
AUTHORS chore: move name to AUTHORS 2026-01-26 19:32:58 +00:00
babel.config.js feat: add SPDX headers 2024-09-18 22:03:46 +02:00
CHANGELOG.md build(release): 4.13.1 2026-03-18 10:04:55 +01:00
composer.json Chore(deps-dev): Bump php-cs-fixer/shim from 3.93.1 to 3.94.2 2026-03-01 10:52:31 +00:00
composer.lock chore(dev-deps): Bump nextcloud/ocp package 2026-03-03 04:40:26 +00:00
COPYING
krankerl.toml chore: Add krankerl config 2023-03-20 17:29:12 +01:00
Makefile feat: add SPDX headers 2024-09-18 22:03:46 +02:00
package-lock.json Chore(deps): Bump diff from 8.0.3 to 8.0.4 2026-03-24 10:53:30 +00:00
package.json Chore(deps): Bump diff from 8.0.3 to 8.0.4 2026-03-24 10:53:30 +00:00
playwright.config.ts fix: Add playwright server setup for CI 2026-01-26 12:17:13 +00:00
psalm.xml fix: Suppress psalm error 2026-02-27 07:16:45 +00:00
README.md docs: Remove reference to nncli 2025-01-08 12:50:16 +01:00
REUSE.toml feat: add SPDX headers 2024-09-18 22:03:46 +02:00
webpack.config.js chore: Remove manual split group 2025-11-13 10:55:52 +01:00

Notes

REUSE status

The Notes app is a distraction free notes taking app for Nextcloud. It provides categories for better organization and supports formatting using Markdown syntax. Notes are saved as files in your Nextcloud, so you can view and edit them with every Nextcloud client. Furthermore, a separate REST API allows for an easy integration into apps (Android, iOS, as well as 3rd-party apps which allow convenient access to your Nextcloud notes). Further features include marking notes as favorites.

Screenshot of Nextcloud Notes

🚀 Installation

In your Nextcloud, simply navigate to »Apps«, choose the category »Office«, find the Notes app and enable it. Then open the Notes app from the app menu.

Nextcloud will notify you about possible updates. Please have a look at CHANGELOG.md for details about changes.

Bugs

Before reporting bugs:

👥 Maintainers

⚠️ Developer Info

Lint Test

Building the app

  1. Clone this into your apps folder of your Nextcloud
  2. In a terminal, run the command make dev-setup to install the dependencies
  3. Then to build the Javascript run make build-js or make watch-js to rebuild it when you make changes
  4. Enable the app through the app management of your Nextcloud

REST API for third-party apps

The notes app provides a JSON-API for third-party apps. Please have a look at our API documentation.

Admin configuration

It is possible to specify different defaults for the notes settings of new users using occ commands like these:

occ config:app:set notes noteMode --value="preview"
occ config:app:set notes fileSuffix --value=".md"
occ config:app:set notes defaultFolder --value="Shared notes"
Setting Property name Default Other available option(s)
Display mode for notes noteMode edit preview
File extension for new notes fileSuffix .txt .md
Folder to store your notes defaultFolder Notes Custom