You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Go to file
Julius Härtl 6eb8d025cb
Merge pull request #1051 from nextcloud/automated/update-workflows
5 hours ago
.github chore: update workflows from templates 6 hours ago
.tx [tx-robot] Update transifex configuration 8 months ago
appinfo Bump version to 4.8.0-beta.2 1 week ago
css add help 8 months ago
docs/api fix minor API version 10 months ago
img enh: Update icons to material design 3 months ago
l10n Fix(l10n): Update translations from Transifex 1 week ago
lib fix: Wrap renaming of notes through autotile in locking context 1 week ago
src fix: setting button spacing 2 weeks ago
templates use @nextcloud/webpack-vue-config 3 years ago
tests feat: Add setting for rich mode and make markdown the default 2 months ago
.editorconfig switch to Vue.js 4 years ago
.eslintrc.js update @nextcloud/eslint-config from 6 to 7 1 year ago
.gitignore update dependencies 2 years ago
.nextcloudignore chore: Add krankerl config 2 months ago
.php-cs-fixer.dist.php update dependencies 2 years ago
.stylelintrc.js use @nextcloud/stylelint-config, update and simple 2 years ago
CHANGELOG.md Bump version to 4.8.0-beta.2 1 week ago
COPYING various cleanups 10 years ago
Makefile remove babel.config.js from build package 2 years ago
README.md Update README.md 3 months ago
babel.config.js update dependencies / use @nextcloud/babel-config 2 years ago
composer.json require Nextcloud 25 8 months ago
krankerl.toml chore: Add krankerl config 2 months ago
package-lock.json Merge pull request #1045 from nextcloud/dependabot/npm_and_yarn/nextcloud/event-bus-3.1.0 2 weeks ago
package.json Bump version to 4.8.0-beta.2 1 week ago
webpack.config.js perf: Lazy load dashboard components 4 months ago

README.md

Notes

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.

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