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 🙏

© 2024 – Pkg Stats / Ryan Hefner

n8n-nodes-raindropbackup

v1.0.1

Published

Backup for Raindrop with n8n

Downloads

4

Readme

n8n Raindrop Backup Node

This is an n8n community node. It allows you to backup your Raindrop.io bookmarks, get user information, and generate new backups in your workflow.

Installation

No special requirement for this node.

Just follow the generic installation guide in the n8n community nodes documentation.

NpmJs url: https://www.npmjs.com/package/n8n-nodes-raindropbackup

NpmJs package name: n8n-nodes-raindropbackup

Go to Settings > Community Nodes, and click Install a community node.
Enter n8n-nodes-raindropbackup in Enter npm package name input.
Click Install.

After installation, you can use the search bar to add the Raindrop Backup node to your workflow.

Usage

The node configuration is simple. Specify the credentials and the operation you want to perform. Credentials

To use this node, you need to configure the Raindrop credentials in n8n. The Raindrop API credentials are already built into n8n. Follow the steps below to set it up:

In n8n, go to Credentials.
Create a new credential and select Raindrop API.
Click on Connect and follow the instructions to authorize n8n to access your Raindrop account.

For more information on setting up Raindrop credentials, refer to the n8n documentation. https://docs.n8n.io/integrations/builtin/credentials/raindrop/#using-oauth

Resources/Operations

This section describes the operations available in this node.

| Resource | Operation | Description | Credentials required | | -------- | ------------------- | ---------------------------------------------------------- | -------------------- | | Backup | Generate New Backup | Generates a new backup of your Raindrop bookmarks. | Yes | | | Get Many | Fetches all backups created since the account was created. | Yes | | User | Get User | Fetches user information from Raindrop.io. | Yes |

Generates a new backup of your Raindrop bookmarks.

Example output:

{
  "result": {
    "message": "We will send you email with html export file when it be ready! Time depends on bookmarks count and queue."
  }
}

Get Many

Fetches all backups created since the account was created.

Example output:

{
  "result": {
    "items": [
      {
        "_id": "665125b73d690ffb25b6880a",
        "created": "2024-05-24T23:41:43.182Z"
      },
      {
        "_id": "664a3fa2d1275c06f9c663e1",
        "created": "2024-05-19T18:06:26.354Z"
      },
      // More items...
    ]
  }
}

Get User

Fetches user information from Raindrop.io.

Example output:

{
  "result": {
    "user": {
      "tfa": {
        "enabled": true
      },
      "files": {
        "used": 0,
        "size": 100000000,
        "lastCheckPoint": "2023-10-28T00:13:10.816Z"
      },
      "_id": "1737296",
      "fullName": "pichon",
      "name": "pichon",
      "email": "[email protected]",
      "avatar": "https://up.raindrop.io/user/avatars/00/00/0/12285535.png",
      "pro": false,
      "groups": [
        {
          "title": "Collections",
          "hidden": false,
          "sort": 0,
          "collections": [
            43256920,
            43211905,
            // More collections...
          ]
        }
      ],
      "lastAction": "2024-05-24T23:12:48.229Z",
      "lastVisit": "2024-05-24T00:27:28.323Z",
      "registered": "2023-10-28T00:13:10.817Z",
      "lastUpdate": "2024-05-24T23:12:48.229Z",
      "config": {
        "default_collection_view": "grid",
        "raindrops_hide": [
          "list_excerpt",
          "simple_excerpt",
          "grid_excerpt",
          "masonry_excerpt"
        ],
        "raindrops_buttons": [
          "select",
          "preview",
          "edit",
          "remove",
          "new_tab"
        ],
        "raindrops_search_by_score": true,
        "raindrops_search_incollection": false,
        "broken_level": "default",
        "font_size": 0,
        "add_default_collection": -1,
        "acknowledge": [],
        "last_collection": 38758240,
        "filters_hide": true,
        "tags_hide": true,
        "nested_view_legacy": true,
        "ai_suggestions": true,
        "password": true
      }
    }
  }
}

You can use a docker-compose.yml file to launch 2 containers, one with n8n and another with a mock Raindrop API for testing purposes.