# Notes The Notes app is a distraction free notes taking app for [Nextcloud](https://www.nextcloud.com/). It provides categories for better organization and supports formatting using [Markdown](https://en.wikipedia.org/wiki/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](https://github.com/nextcloud/notes/blob/master/docs/api/README.md) allows for an easy integration into third-party apps (currently, there are notes apps for [Android](https://github.com/stefan-niedermann/nextcloud-notes), [iOS](https://github.com/owncloud/notes-iOS-App) and the [console](https://git.danielmoch.com/nncli/about) which allow convenient access to your Nextcloud notes). Further features include marking notes as favorites. ![Screenshot of Nextcloud Notes](https://raw.githubusercontent.com/nextcloud/screenshots/master/apps/Notes/notes.png) ## :rocket: 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](CHANGELOG.md) for details about changes. ## :exclamation: Bugs Before reporting bugs: * get the newest version of the Notes app * please consider also installing the [latest development version](https://github.com/nextcloud/notes/archive/master.zip) * [check if they have already been reported](https://github.com/nextcloud/notes/issues) ## :busts_in_silhouette: Maintainers - [Kristof Hamann](https://github.com/korelstar) - [Hendrik Leppelsack](https://github.com/Henni) (formerly) - [Lukas Reschke](https://github.com/LukasReschke) (formerly) ## :warning: Developer Info [![Lint](https://github.com/nextcloud/notes/workflows/Lint/badge.svg?branch=master&event=push)](https://github.com/nextcloud/notes/actions?query=workflow%3ALint+event%3Apush+branch%3Amaster) [![Test](https://github.com/nextcloud/notes/workflows/Test/badge.svg?branch=master&event=push)](https://github.com/nextcloud/notes/actions?query=workflow%3ATest+event%3Apush+branch%3Amaster) ### 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](docs/api/README.md)**.