No description
  • JavaScript 72.5%
  • Vue 18.1%
  • PHP 7.5%
  • TypeScript 1.5%
  • SCSS 0.4%
Find a file
Nextcloud bot 643bfedf78
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2026-05-09 00:35:42 +00:00
.github chore: bump main version 2026-05-07 15:40:44 +02:00
.tx chore: bump main version 2026-05-07 15:40:44 +02:00
__mocks__/@nextcloud feat: migrate app to Vue 3 2025-08-22 09:39:40 +02:00
appinfo chore: bump main version 2026-05-07 15:40:44 +02:00
build
composer
img
l10n fix(l10n): Update translations from Transifex 2026-05-09 00:35:42 +00:00
lib fix(SocialApi): Ensure the address book permissions are sufficent before doing update 2026-04-23 15:00:40 +02:00
LICENSES
src feat: sort favorite contact first in list 2026-05-08 16:21:29 +02:00
templates
tests test: mock axios and cdav-library 2026-05-08 12:29:45 +02:00
vendor-bin chore(deps): update dependency christophwurst/nextcloud_testing to v2 2026-04-21 01:26:01 +00:00
.git-blame-ignore-revs
.gitattributes feat: import contacts from files via ocs 2025-09-15 17:21:11 +02:00
.gitignore chore: add psalm 2025-09-16 16:00:27 +02:00
.nextcloudignore
.npmignore
.php-cs-fixer.dist.php
AUTHORS.md
babel.config.cjs
CHANGELOG.md
CHANGELOG.md.license
composer.json chore(deps): update dependency bamarni/composer-bin-plugin to ^1.9.1 2026-02-08 19:11:23 +00:00
composer.lock chore(deps): update dependency bamarni/composer-bin-plugin to ^1.9.1 2026-02-08 19:11:23 +00:00
COPYING
eslint.config.mjs chore: finish eslint todos 2026-03-10 18:00:49 +01:00
jest.config.cjs feat: migrate app to Vue 3 2025-08-22 09:39:40 +02:00
krankerl.toml
Makefile
package-lock.json chore(deps): bump axios from 1.15.0 to 1.16.0 2026-05-08 12:34:37 +00:00
package.json fix(deps): update dependency @nextcloud/axios to ^2.6.0 2026-05-08 12:29:27 +00:00
phpunit.xml chore(phpunit): exclude vendor and vendor-bin 2025-09-16 22:49:52 +02:00
playwright.config.js
psalm.xml refactor(psalm): Improve static analysis 2025-12-17 20:41:21 +01:00
README.md
renovate.json chore(eol): stable 7.3 ⚰️ 2026-02-19 15:24:21 +01:00
REUSE.toml
stylelint.config.cjs
tsconfig.json chore: imporove ts complier configuration 2026-01-06 08:14:49 -05:00
vite.config.js chore: revive devtools 2026-01-23 15:50:28 +01:00

Nextcloud Contacts

REUSE status Downloads Code coverage Dependabot status

A contacts app for Nextcloud. Easily sync contacts from various devices with your Nextcloud and edit them online.

This app only support vCard 3.0 and 4.0. This app is compatible with the same browsers as server except IE!

💙 🎉 Why is this so awesome?

  • 🚀 Integration with other Nextcloud apps! Currently Mail and Calendar more to come.
  • 🎉 Never forget a birthday! You can sync birthdays and other recurring events with your Nextcloud Calendar.
  • 👥 Sharing of address books! You want to share your contacts with your friends or coworkers? No problem!
  • 🙈 Were not reinventing the wheel! Based on the great and open SabreDAV library.

Maintainers

🛠️ Installation

The app is distributed through the app store and you can install it right from your Nextcloud installation.

Release tarballs are hosted at https://github.com/nextcloud-releases/contacts/releases.

📡 Support

If you need assistance or want to ask a question about Contacts, you are welcome to ask for support in our forums. If you have found a bug, feel free to open a new Issue on GitHub. Keep in mind, that this repository only manages the frontend. If you find bugs or have problems with the CardDAV-Backend, you should ask the team at Nextcloud server for help!

Could you add XXX property?

This is a complicated answer. We did not invent the way contacts works. We are following the official vCard format. This format include a predefined set of properties that other applications/devices supports too (Android, iOS, Windows, Gnome...). Adding a custom property would just make it compatible with Nextcloud and will not be understood by any other clients and make it complicated for us to ensure its sustainability over time. Long story short, we suggest you use the Notes field to add your custom data :)

If you'd like to join, just go through the issue list and fix some. :)

Build the app

# set up and build for production
composer install
npm ci
npm run build

# install dependencies
composer install
npm ci

# build for dev and watch changes
npm run watch

# build for dev
npm run dev

# build for production with minification
npm run build

Running tests

You can run all front-end tests by using:

# run tests once
npm run test

# run tests continuously after every change
npm run test:watch

✌️ Code of conduct

The Nextcloud community has core values that are shared between all members during conferences, hackweeks and on all interactions in online platforms including Github and Forums. If you contribute, participate or interact with this community, please respect our shared values. 😌

❤️ How to create a pull request

This guide will help you get started:

Commits in this repository follow the Conventional Commits specification.