google-formjs
Version:
<h1 align="center"> <img src="https://github.com/naveen8801/gFormJS/blob/master/assets/banner.jpg" alt="Banner" width="100%"> <br> google-formjs </h1> <h5 align="center">Awsome tool to create google form through command line quickly. Just add you Form
24 lines (18 loc) • 575 B
JavaScript
;
const React = require("react");
const importJsx = require("import-jsx");
const { render } = require("ink");
const meow = require("meow");
const ui = importJsx("./ui");
const cli = meow(`
gformjs --help
Description :
Create google forms directly from terminal very easily
Usage :
Step 1 : gformjs
Step 2 : Select form 2 options Create Form or Check Form Responses
Step 3 : Type FormJson file path while creating and formID while gettting form responses
Step 4 : That's it 🚀
`);
render(React.createElement(ui, cli.flags));