No description
  • JavaScript 70.1%
  • PHP 16.1%
  • Vue 11.7%
  • TypeScript 1.5%
  • Makefile 0.4%
  • Other 0.2%
Find a file
github-actions[bot] 0ee34fe898
Merge pull request #1895 from nextcloud/dependabot/github_actions/shivammathur/setup-php-2.37.2
Chore(deps): Bump shivammathur/setup-php from 2.37.1 to 2.37.2
2026-06-12 12:03:07 +00:00
.github Chore(deps): Bump shivammathur/setup-php from 2.37.1 to 2.37.2 2026-06-12 11:32:21 +00:00
.tx
appinfo chore(release): v6.0.0 2026-05-29 07:55:10 +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-06-12 02:01:36 +00:00
lib chore: fixup NoteFileEventsListener for psalm 2026-04-26 23:02:10 -04:00
LICENSES feat: add SPDX headers 2024-09-18 22:03:46 +02:00
playwright fix(test): Update checks for new icons 2026-05-29 07:13:20 +01:00
src feat(ui): indicate category in All notes view 2026-05-29 07:24:47 +01:00
templates fix: lint with cs-fixer 2025-02-01 10:34:15 +00:00
tests chore: drop NotesHooks from psalm-baseline.xml 2026-04-26 20:33:57 -04: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 chore(release): v6.0.0 2026-05-29 07:55:10 +01:00
composer.json Chore(deps-dev): Bump phan/phan from 5.5.2 to 6.0.5 2026-06-02 07:39:47 +00:00
composer.lock Chore(deps-dev): Bump phan/phan from 5.5.2 to 6.0.5 2026-06-02 07:39:47 +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-dev): Bump shell-quote from 1.8.3 to 1.8.4 2026-06-09 17:29:52 +00:00
package.json chore(release): v6.0.0 2026-05-29 07:55:10 +01:00
playwright.config.ts fix(tests): Update test structure 2026-04-21 05:24:38 +01:00
psalm.xml fix: Update PHP version requirements to 8.2 and adjust dependencies 2026-05-28 09:33:51 +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