Marketplace
İndirebileceğin 3.557 hazır workflow dosyası, artı 10.661 kaynağa bağlı n8n referansı.
Get local datetime into Function node using moment.js
A quick example showing how to get the local date and time into a Function node using moment.js. This relies on the GENERIC_TIMEZONE environment variable being correctly configured (see the docs here) NOTE: In order for this to work, you must whitelist the moment library for use by setting the following environment variable: NODE_FUNCTION_ALLOW_EXTERNAL=moment For convenience, the Function code is as follows: const moment = require('moment'); let date = moment().tz($env['GENERIC_TIMEZONE']); let year = date.year(); let month = date.month(); // zero-indexed! let day = date.date(); let hour = date.hours(); let minute = date.minutes(); let second = date.seconds(); let millisecond = date.millisecond(); let formatted = date.format('YYYY-MM-DD HH:mm:ss.SSS Z'); return [ { json: { utc: date, year: year, month: month, // zero-indexed! day: day, hour: hour, minute: minute, second: second, millisecond: millisecond, formatted: formatted } } ]; `
Transform data in Google Sheets
This workflow appends, lookup, updates, and reads data from a Google Sheet spreadsheet. Set node: The Set node is used to generate data that we want to add to Google Sheets. Depending on your use-case you might have data coming from a different source. For example, you might be fetching data from a WebHook call. Add the node that will fetch the data that you want to add to the Google Sheet. Use can then use the Set node to set the data that you want to add to the Google Sheets. Google Sheets node: This node will add the data from the Set node in a new row to the Google Sheet. You will have to enter the Spreadsheet ID and the Range to specify which sheet you want to add the data to. Google Sheets1 node: This node looks for a specific value in the Google Sheet and returns all the rows that contain the value. In this example, we are looking for the value Berlin in our Google Sheet. If you want to look for a different value, enter that value in the Lookup Value field, and specify the column in the Lookup Column field. Set1 node: The Set node sets the value of the rent by $100 for the houses in Berlin. We pass this new data to the next nodes in the workflow. Google Sheets2 node: This no
Display project data on a smashing dashboard
This workflow will gather data every minute from the GitHub (https://github.com), Docker (https://www.docker.com/), npm (https://www.npmjs.com/) and Product Hunt (https://www.producthunt.com/) website APIs and display select information on a Smashing (https://smashing.github.io/) dashboard. For convenience sake, the dashboard piece can be easily downloaded as a docker container (https://hub.docker.com/r/tephlon/n8n_dashboard) and installed into your docker environment.
Execute Set node based on Function output
Companion workflow for Switch node docs
Read RSS feed from two different sources
Explore this workflow on its official n8n template page.
Receive updates when an event occurs in Taiga
Explore this workflow on its official n8n template page.
Create, update, and get an issue on Taiga
Explore this workflow on its official n8n template page.
Add data from a photo to Google Sheets
Automatically adding expense receipts to Google Sheets with Telegram, Mindee API, Twilio, and n8n.
Send memes via Discord
A discord integration that sends you memes :)
Download and post an image on LinkedIn
Companion workflow for LinkedIn node docs
Create, update and send a message to a channel in Microsoft Teams
Companion workflow for Microsoft Teams node docs
Manage files in S3
Explore this workflow on its official n8n template page.
Receive updates when a new list is created in Affinity
Explore this workflow on its official n8n template page.
Receive updates when a customer is created in HelpScout
Explore this workflow on its official n8n template page.
Create or update a post in WordPress
Explore this workflow on its official n8n template page.
Send an SMS using the Mocean node
Explore this workflow on its official n8n template page.
Turn on a light and set its brightness
Explore this workflow on its official n8n template page.
Send an SMS when a workflow fails
Explore this workflow on its official n8n template page.
Create and update lead in Salesforce
Companion workflow for Salesforce node docs
Download a file and upload it to an FTP Server
Companion workflow for FTP node docs
Convert the JSON data received from the CocktailDB API in XML
Explore this workflow on its official n8n template page.
Receive updates when an email is bounced or opened
Explore this workflow on its official n8n template page.
Create a coupon on Paddle
Explore this workflow on its official n8n template page.
Trigger a build using the TravisCI node
Explore this workflow on its official n8n template page.