Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/enquirer/prompt-google-form
Enquirer prompt for filling in Google Forms.
https://github.com/enquirer/prompt-google-form
Last synced: 29 days ago
JSON representation
Enquirer prompt for filling in Google Forms.
- Host: GitHub
- URL: https://github.com/enquirer/prompt-google-form
- Owner: enquirer
- License: mit
- Created: 2020-01-08T19:40:52.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-09-10T18:38:23.000Z (over 2 years ago)
- Last Synced: 2024-11-05T18:55:23.722Z (about 1 month ago)
- Language: JavaScript
- Size: 19.5 KB
- Stars: 9
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/contributing.md
- License: LICENSE
Awesome Lists containing this project
README
# prompt-google-form [![NPM version](https://img.shields.io/npm/v/prompt-google-form.svg?style=flat)](https://www.npmjs.com/package/prompt-google-form) [![NPM monthly downloads](https://img.shields.io/npm/dm/prompt-google-form.svg?style=flat)](https://npmjs.org/package/prompt-google-form) [![NPM total downloads](https://img.shields.io/npm/dt/prompt-google-form.svg?style=flat)](https://npmjs.org/package/prompt-google-form)
> Enquirer prompt for filling in Google Forms.
Please consider following this project's author, [Aditya Vyas](https://github.com/adityavyas611), and consider starring the project to show your :heart: and support.
## Install
Install with [npm](https://www.npmjs.com/):
```sh
$ npm install --save prompt-google-form
```## Usage
```js
const GoogleFormPrompt = require('prompt-google-form');
const prompt = new GoogleFormPrompt({
formId: '1FAIpQLSdniaX5nAjywbvnT9tQp1OTryh7148Lkl5LnvJV1mBOy1QXdA'
});prompt.run()
.then(answer => {
console.log(answer);
})
.catch(err => {
console.error(err);
});
```## About
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
Please read the [contributing guide](.github/contributing.md) for advice on opening issues, pull requests, and coding standards.
Running Tests
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
```sh
$ npm install && npm test
```Building docs
_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
To generate the readme, run the following command:
```sh
$ npm install -g verbose/verb#dev verb-generate-readme && verb
```### Contributors
| **Commits** | **Contributor** |
| --- | --- |
| 5 | [adityavyas611](https://github.com/adityavyas611) |
| 5 | [doowb](https://github.com/doowb) |### Author
**Aditya Vyas**
* [GitHub Profile](https://github.com/adityavyas611)
* [Twitter Profile](https://twitter.com/cybertron611)
* [LinkedIn Profile](https://linkedin.com/in/aditya-vyas-25b370123/)### License
Copyright © 2020, [Aditya Vyas](https://github.com/adityavyas611).
Released under the [MIT License](LICENSE).***
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on January 14, 2020._