No description
Find a file
Nextcloud bot f60948cc90
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2026-02-07 01:34:05 +00:00
.github Merge pull request #1736 from nextcloud/dependabot/github_actions/actions/setup-node-6.2.0 2026-02-03 11:49:27 +01:00
.tx
appinfo build(release): 4.13.0 2026-01-27 17:13:51 +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 enh: Update icons to material design 2023-02-27 18:05:51 +01:00
l10n fix(l10n): Update translations from Transifex 2026-02-07 01:34:05 +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 chore: move name to AUTHORS 2026-01-26 19:32:58 +00: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.0 2026-01-27 17:13:51 +01:00
composer.json Chore(deps-dev): Bump php-cs-fixer/shim from 3.93.0 to 3.93.1 2026-02-01 10:52:39 +00:00
composer.lock Merge pull request #1724 from nextcloud/automated/noid/main-update-nextcloud-ocp 2026-02-03 11:47:23 +01: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-dev): Bump @nextcloud/stylelint-config from 3.2.0 to 3.2.1 2026-02-06 10:53:31 +00:00
package.json Chore(deps-dev): Bump @nextcloud/stylelint-config from 3.2.0 to 3.2.1 2026-02-06 10:53:31 +00:00
playwright.config.ts fix: Add playwright server setup for CI 2026-01-26 12:17:13 +00:00
psalm.xml ci(actions): Pin action versions and update workflow templates 2026-01-26 11:49:07 +01: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