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, and 3rd-party apps like the console and many more which allow convenient access to your Nextcloud notes). Further features include marking notes as favorites.
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.
Before reporting bugs:
- get the newest version of the Notes app
- please consider also installing the latest development version
- check if they have already been reported
- Kristof Hamann
- Hendrik Leppelsack (formerly)
- Lukas Reschke (formerly)
- Clone this into your
apps
folder of your Nextcloud - In a terminal, run the command
make dev-setup
to install the dependencies - Then to build the Javascript run
make build-js
ormake watch-js
to rebuild it when you make changes - Enable the app through the app management of your Nextcloud
The notes app provides a JSON-API for third-party apps. Please have a look at our API documentation.
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 |