
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-contentdrips
Advanced tools
n8n node for Contentdrips API - create carousels and static graphics for social media content automation
An n8n community node for the Contentdrips API that enables you to create carousels and static graphics for social media content automation.
For n8n Cloud users:
n8n-nodes-contentdrips
The node will be automatically installed and available in your workflow editor.
For self-hosted installations, you have several options:
n8n-nodes-contentdrips
Add the following to your docker-compose.yml
environment variables:
environment:
- NODE_FUNCTION_ALLOW_EXTERNAL=*
Then modify your Dockerfile or create a custom image:
FROM n8nio/n8n:latest
USER root
RUN npm install -g n8n-nodes-contentdrips
USER node
# Navigate to your n8n installation directory
cd ~/.n8n
# Install the node
npm install n8n-nodes-contentdrips
# Restart n8n
Create static graphics (PNG/PDF) from templates:
{
"operation": "generateGraphic",
"templateId": "126130",
"output": "png",
"branding": {
"name": "Jane Doe",
"handle": "@janedoe",
"bio": "Content Creator",
"website_url": "https://janedoe.com",
"avatar_image_url": "https://example.com/avatar.jpg"
},
"contentUpdates": [
{
"type": "textbox",
"label": "title_1",
"value": "New Post Title"
}
]
}
Create multi-slide carousels:
{
"operation": "generateCarousel",
"templateId": "126130",
"output": "pdf",
"carousel": {
"intro_slide": {
"heading": "Start Here",
"description": "Tips that work",
"image": "https://example.com/intro.jpg"
},
"slides": [
{
"heading": "Tip 1",
"description": "Post daily content",
"image": "https://example.com/slide1.jpg"
}
],
"ending_slide": {
"heading": "Follow for more",
"description": "New tips weekly",
"image": "https://example.com/end.jpg"
}
}
}
Monitor background job processing:
{
"operation": "checkJobStatus",
"jobId": "15bf4a39-876a-4780-aaa9-4be6fe2c61b4"
}
Retrieve completed job results:
{
"operation": "getJobResult",
"jobId": "15bf4a39-876a-4780-aaa9-4be6fe2c61b4"
}
{
"job_id": "15bf4a39-876a-4780-aaa9-4be6fe2c61b4",
"status": "queued",
"message": "Job has been queued for processing",
"estimated_time": "2-5 minutes"
}
{
"date": "2025-06-02T16:31:18.633Z",
"type": "carousel",
"export_url": "https://contentdrips2.s3.amazonaws.com/server/104017/uploads/carousel-output.pdf"
}
The node supports n8n's Continue on Fail option. When enabled, errors are returned as data instead of stopping the workflow.
MIT License - see LICENSE.md for details.
Contributions are welcome! Please feel free to submit pull requests or open issues for bugs and feature requests.
FAQs
n8n node for Contentdrips API - create carousels and static graphics for social media content automation
The npm package n8n-nodes-contentdrips receives a total of 322 weekly downloads. As such, n8n-nodes-contentdrips popularity was classified as not popular.
We found that n8n-nodes-contentdrips 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.