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

@axiomlab.dev/n8n-nodes-google-forms

v1.0.0

Published

Automate Google Forms(TM) tasks with n8n. Create, manage, and analyze forms effortlessly

Readme

Banner image

n8n-nodes-google-forms

This is an n8n community node. It lets you use Google Forms in your n8n workflows.

Google Forms is part of Google Workspace. The Google Forms API allows you to create and edit forms/quizzes, manage publish settings, read responses.

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials Compatibility
Usage Resources
Version history

Installation

Follow the installation guide in the n8n community nodes documentation. You can install from the nodes panel (verified packages), via GUI using the npm package name, or manually from the command line on self-hosted instances.

Operations

Form

Create Form — POST /v1/forms (creates an empty form with a title).

Get Form — GET /v1/forms/{formId}.

Batch Update — POST /v1/forms/{formId}:batchUpdate (add/move/update items, turn on quiz settings, etc.).

Set Publish Settings — POST /v1/forms/{formId}:setPublishSettings (publish/unpublish; legacy forms don’t support this).

Response

List Responses — GET /v1/forms/{formId}/responses (supports filters timestamp > N and timestamp >= N for incremental pulls).

Get Response — GET /v1/forms/{formId}/responses/{responseId}.

Credentials

Prerequisites

Google Cloud project.

Enable Google Forms API (and Pub/Sub only if you plan to use Watches later).

Set up OAuth

In Google Cloud, create an OAuth 2.0 Client ID (Application type: Web application).

In n8n, create a Google OAuth2 credential. Copy the redirect URI shown by n8n into your OAuth client’s Authorized redirect URIs.

Scopes:

https://www.googleapis.com/auth/forms.body (create/edit via batchUpdate) Google for Developers

https://www.googleapis.com/auth/forms.responses.readonly (read responses) Google for Developers

Tip: If you’re self-hosting and see redirect_uri_mismatch, ensure the exact n8n callback URL is whitelisted in Google Cloud.

Compatibility

n8n: Tested on n8n v1.94.0 and newer. (Community nodes are installable via GUI on modern 1.x builds; Cloud supports verified community nodes from 1.94.0.)

Node.js (for building locally): ≥ 18.17.0.

Usage

Install the package via n8n’s Community Nodes UI (GUI install) and restart if prompted.

Create a credential: Add a Google OAuth2 credential in n8n and complete the consent flow.

Create a form: Use Form → Create to get a formId.

Add items: Use Form → Batch Update with a requests[] array (e.g., createItem, updateItem, moveItem).

Publish: Use Form → Set Publish Settings to make the form available to respondents.

Read responses: Use Responses → List with a timestamp >= ... filter for incremental syncs; or Get a specific response.

Resources

Version history

v1.0 — Initial release: Create Form, Get Form, Batch Update, Set Publish Settings, List Responses, Get Response (OAuth2).