npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-fleeting-notes

v0.1.6

Published

n8n community node for managing fleeting notes in Obsidian vault

Readme

n8n-nodes-fleeting-notes (Unofficial)

This is an unofficial community node for n8n that manages fleeting notes through the Fleeting Notes API. It is not affiliated with or officially supported by FleetingNotes or n8n. This node allows you to create, read, update, and delete fleeting notes from n8n workflows, which can then be synced to your Obsidian vault through Fleeting Notes.

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials
Resources
Usage Examples
License

Installation

Follow these steps to install this node in your n8n instance:

Using n8n Community Nodes

  1. Open your n8n instance
  2. Go to Settings > Community Nodes
  3. Click on Install
  4. Enter n8n-nodes-fleeting-notes in the input field
  5. Click on Install

Manual Installation

You can also manually install this node:

  1. Clone the repository:
git clone https://github.com/anpigon/n8n-nodes-fleeting-notes
  1. Install dependencies:
cd n8n-nodes-fleeting-notes
pnpm install
  1. Build the node:
pnpm build
  1. Link to your n8n installation:
pnpm run test-local

Operations

This node provides the following operations:

Note

  • Create - Create a new fleeting note via Fleeting Notes API
  • Get - Retrieve a specific note by ID
  • Get Many - Retrieve multiple notes
  • Update - Update an existing note's content, title, or metadata
  • Delete - Delete a fleeting note

Credentials

To use this node, you need to set up the Fleeting Notes API credentials:

  1. Email - The email address for your Fleeting Notes account (required)
  2. Password - The password for your Fleeting Notes account (required)
  3. Encryption Key - Optional encryption key for encrypted notes

Resources

  • Obsidian - The knowledge base that works on local Markdown files
  • Fleeting Notes - Quick capture tool that can sync with Obsidian

Usage Examples

Here are examples of how to use each operation:

Create a New Note

To create a new fleeting note:

  1. Add the Fleeting Notes (Obsidian) node to your workflow
  2. Select Note as the Resource
  3. Select Create as the Operation
  4. Configure the following fields:
    • Title: The title of your note
    • Content: The content of your note in Markdown format

Example output:

{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "title": "My New Idea",
  "content": "This is the content of my fleeting note...",
  "created_at": "2023-12-01T10:30:00.000Z",
  "modified_at": "2023-12-01T10:30:00.000Z",
  "deleted": false,
  "encrypted": false
}

Get a Note

To retrieve a specific note:

  1. Add the Fleeting Notes (Obsidian) node to your workflow
  2. Select Note as the Resource
  3. Select Get as the Operation
  4. Set the Note ID to the ID of the note you want to retrieve (e.g., 550e8400-e29b-41d4-a716-446655440000)

Example output:

{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "title": "My New Idea",
  "content": "This is the content of my fleeting note...",
  "created_at": "2023-12-01T10:30:00.000Z",
  "modified_at": "2023-12-01T10:30:00.000Z",
  "deleted": false,
  "encrypted": false
}

Get Many Notes

To retrieve multiple notes:

  1. Add the Fleeting Notes (Obsidian) node to your workflow
  2. Select Note as the Resource
  3. Select Get Many as the Operation
  4. Configure the following:
    • Return All: Toggle to return all notes or a limited number
    • Limit: If not returning all, specify the maximum number to return

Example output (returns multiple note objects):

{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "title": "My New Idea",
  "content": "This is the content of my fleeting note...",
  "created_at": "2023-12-01T10:30:00.000Z",
  "modified_at": "2023-12-01T10:30:00.000Z",
  "deleted": false,
  "encrypted": false
}

Update a Note

To update an existing note:

  1. Add the Fleeting Notes (Obsidian) node to your workflow
  2. Select Note as the Resource
  3. Select Update as the Operation
  4. Set the Note ID to the ID of the note to update
  5. Configure the Update Fields:
    • Title: New title for the note
    • Content: New content for the note

Example output:

{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "title": "Updated Note Title",
  "content": "Updated content of my fleeting note...",
  "created_at": "2023-12-01T10:30:00.000Z",
  "modified_at": "2023-12-01T11:45:00.000Z",
  "deleted": false,
  "encrypted": false
}

Delete a Note

To delete a note:

  1. Add the Fleeting Notes (Obsidian) node to your workflow
  2. Select Note as the Resource
  3. Select Delete as the Operation
  4. Set the Note ID to the ID of the note to delete

Example output:

{
  "success": true,
  "id": "550e8400-e29b-41d4-a716-446655440000"
}

License

This project is licensed under the MIT License.