Go to file
renovate[bot] f3ba1a821e chore(deps): update dependency n8n-core to v1.39.0 2024-04-24 23:44:21 +02:00
.vscode Initial commit 2023-10-23 10:46:53 +02:00
credentials fix: lint 2023-10-24 19:25:41 +02:00
nodes/Vikunja fix: import workflow executer from n8n 2024-04-09 14:52:34 +02:00
.editorconfig Initial commit 2023-10-23 10:46:53 +02:00
.eslintrc.js Initial commit 2023-10-23 10:46:53 +02:00
.eslintrc.prepublish.js Initial commit 2023-10-23 10:46:53 +02:00
.gitignore feat: add vikunja logo 2023-10-23 11:10:25 +02:00
.npmignore Initial commit 2023-10-23 10:46:53 +02:00
.prettierrc.js Initial commit 2023-10-23 10:46:53 +02:00
CODE_OF_CONDUCT.md Initial commit 2023-10-23 10:46:53 +02:00
LICENSE.md Initial commit 2023-10-23 10:46:53 +02:00
README.md fix: lint 2023-10-24 19:25:41 +02:00
gulpfile.js Initial commit 2023-10-23 10:46:53 +02:00
index.js Initial commit 2023-10-23 10:46:53 +02:00
package-lock.json chore(deps): update dependency n8n-core to v1.39.0 2024-04-24 23:44:21 +02:00
package.json chore(deps): update dependency @typescript-eslint/parser to ~7.7.0 2024-04-15 22:13:08 +02:00
renovate.json Add renovate.json 2024-03-12 21:40:54 +00:00
tsconfig.json Initial commit 2023-10-23 10:46:53 +02:00
tslint.json Initial commit 2023-10-23 10:46:53 +02:00

README.md

n8n-nodes-vikunja

This is an n8n community node. It lets you use Vikunja in your n8n workflows.

Vikunja is an open-source, self-hostable to-do and productivity application. Check out our website for more information.

n8n is a fair-code licensed workflow automation platform.

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

This node supports all operations supported by Vikunja API tokens. You can see a full list of possible actions when creating a token in Vikunja.

It also allows you to trigger n8n workflows by Vikunja webhooks.

Credentials

The only supported authentication method for this node are API tokens. On your Vikunja instance, head over to Settings > API Tokens and create a new token.

In n8n, create credentials as you usually would. Enter the API token created previously and the API url.

Compatibility

Tested with n8n Version 1.9.3.

Development

You need npm and NodeJS installed.

  • Install dependencies with npm i
  • Build the node with npm run build
  • Check for lint errors with npm run lint and fix them with npm run lintfix
  • To release a new version in the npm registry, run npm publish
  • To test the node, build the node with npm run build, then while in the project directory run export N8N_CUSTOM_EXTENSIONS=$PWD and start n8n with the n8n command. You should now be able to find the node when searching for it.

Resources