Skip to content

adityavyas611/google-form-prompt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Get Google Forms as a prompt in terminal

This is a CLI based Google form, for scraping the questions in Command Line.

Installation

Use the package manager yarn to install packages to run Google Forms.

yarn install

Usage

node index.js <google-form-id>

Example

const GoogleFormPrompt = require('./index.js');

const prompt = new GoogleFormPrompt({
    name: "Google Form",
    message: "Please provide the information:",
    form_id: process.argv[2],
});

prompt.run()
.then(res => console.log(res))
.catch(err => console.log(err));

More Examples can be found at Link

This will fetch all the questions from the google form and will display as prompt.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

About

A Enquirer extended Google Form Prompt

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published