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-usefastlaneai

v1.0.0

Published

N8n nodes for Fastlane AI content generation API

Readme

n8n-nodes-usefastlaneai

N8n community node package for Fastlane AI - AI-powered content generation for social media.

Features

This node provides integration with the Fastlane AI API, enabling automated content generation workflows in n8n.

Supported Operations

| Operation | Description | |-----------|-------------| | Pop Blitz | Generate new content from the AI discovery queue | | Get Content | Retrieve content items from your library | | Get Content by ID | Get a specific content item | | Delete Content | Delete unwanted content | | Get Preferences | Get discovery queue tuning settings | | Update Preferences | Update content type weights and other settings | | Get Angles | List all content angles | | Create Angle | Create a new content angle | | Update Angle | Update an existing content angle | | Delete Angle | Delete a content angle | | Get Connections | List connected social media accounts | | Schedule Content | Schedule content for posting | | Get Posts | Get scheduled and posted posts | | Get Post by ID | Get a specific post | | Cancel Posts | Cancel scheduled posts | | Get Post Analytics | Get engagement metrics for posts |

Installation

In n8n

  1. Go to SettingsCommunity Nodes
  2. Enter n8n-nodes-usefastlaneai and install

Manual Installation

npm install n8n-nodes-usefastlaneai

Setup

1. Get API Key

  1. Log in to Fastlane
  2. Go to SettingsAPI Keys
  3. Create a new API key
  4. Copy the key (it will only be shown once)

2. Configure Credentials in n8n

  1. Add a new credential in n8n
  2. Select Fastlane AI API
  3. Enter your API key
  4. Test the connection

Usage

Basic: Pop a Blitz

Generate new AI content:

  1. Add Fastlane AI node to your workflow
  2. Select Pop Blitz operation
  3. Connect your Fastlane AI credentials
  4. Execute to generate content

The response includes:

  • contentId - ID for polling status
  • suggestion - Generated content details
  • swipesRemaining - Remaining daily quota

Example: Schedule Content Workflow

[Pop Blitz] → [Wait] → [Get Content by ID] → [Schedule Content]
  1. Pop Blitz - Generate new content
  2. Wait - Wait ~30 seconds for rendering
  3. Get Content - Check status (poll until CREATED)
  4. Schedule Content - Set platform and time

Example: Batch Analytics

[Get Posts] → [Get Post Analytics]

Get engagement metrics for all your posts.

Content Types

The API supports four content types:

  • Slideshow - Multi-image carousel posts
  • Wall of Text - Text-based posts
  • Green Screen - Video with green screen background
  • Video Hook - Short video hooks for social

Documentation

Development

# Install dependencies
bun install

# Build
bun run build

# Development mode
bun run dev

AI Agent Tool Usage

This node supports n8n AI Agent tool usage. When connected to an AI Agent, the node operations appear as available tools the agent can call.

Requirements

For self-hosted n8n, set this environment variable:

N8N_COMMUNITY_PACKAGES_ALLOW_TOOL_USAGE=true

For Docker Compose:

environment:
  - N8N_COMMUNITY_PACKAGES_ALLOW_TOOL_USAGE=true

Then restart n8n and connect this node to the AI Agent Tool port.

Usage in AI Agents

Connect the Fastlane AI node to an AI Agent's tool port. The agent can then call operations like:

  • "Pop a blitz to generate new content"
  • "Get my recent posts"
  • "Schedule content for tomorrow"

The node returns clean JSON output that AI agents can easily read.

License

MIT