
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
n8n-nodes-yepcode
Advanced tools
This is an n8n community node that enables you to use YepCode within your n8n workflows.
Easily execute AI-generated code in a secure, scalable environment with full support for dependencies, secrets, logs, and access to APIs or databases—all on a developer-first platform designed to create any integration or automation without DevOps complexity.
n8n is a fair-code licensed workflow automation platform.
Installation Operations Credentials Usage Resources
Follow the installation guide in the n8n community nodes documentation.
Execute a specific YepCode process by selecting it from your YepCode workspace. This operation allows you to run pre-built processes with parameter mapping and advanced execution options.
Key Features:
Advanced Options:
Example Use Cases:
Directly execute custom JavaScript or Python code in YepCode from your n8n workflow. This operation provides maximum flexibility for custom logic execution.
Key Features:
Advanced Options:
Example Use Cases:
Authentication is required to use this node. You'll need your YepCode API token, which you can find in your YepCode workspace under Settings > API credentials
. For YepCode On-Premise, you may also specify a custom API host.
Settings > API credentials
in your YepCode workspace.Settings > API credentials
Example JavaScript Code:
// Import any npm package - YepCode will install it automatically
const { DateTime } = require("luxon");
const { n8n } = yepcode.context.parameters;
const results = [];
for (const item of n8n.items) {
results.push({
...item.json,
processedAt: DateTime.now().toISO(),
transformed: item.json.data * 2
});
}
// Access n8n metadata
console.log("Environment:", n8n.metadata);
return results;
Example Python Code:
# Import any PyPI package - YepCode will install it automatically
from datetime import datetime
# Access n8n context
n8n = yepcode.context.parameters['n8n']
results = []
for item in n8n['items']:
# Process each item
processed_item = {
**item['json'],
'processed_at': datetime.now().isoformat(),
'status': 'completed'
}
results.append(processed_item)
# Access n8n metadata
print("Environment:", n8n['metadata'])
print("Execution ID:", n8n['metadata']['$execution']['id'])
return results
Both operations can include n8n context data in your YepCode execution:
For more information on using n8n community nodes, see the n8n documentation. If you are new to n8n, you can get started with the Try it out guide.
FAQs
Custom n8n node module for YepCode
The npm package n8n-nodes-yepcode receives a total of 114 weekly downloads. As such, n8n-nodes-yepcode popularity was classified as not popular.
We found that n8n-nodes-yepcode demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.