Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/formcarry/formcarry-cli
The command line interface for Formcarry 🎉
https://github.com/formcarry/formcarry-cli
Last synced: 3 months ago
JSON representation
The command line interface for Formcarry 🎉
- Host: GitHub
- URL: https://github.com/formcarry/formcarry-cli
- Owner: formcarry
- License: apache-2.0
- Created: 2017-09-18T15:10:41.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-21T06:37:17.000Z (over 7 years ago)
- Last Synced: 2024-10-13T17:00:20.708Z (3 months ago)
- Language: JavaScript
- Homepage: https://formcarry.com
- Size: 10.7 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![Formcarry CLI](https://s3-us-west-2.amazonaws.com/formcarry/repo-banner.jpg "Formcarry CLI")
## Usage
Formcarry CLI enables form creation, listing and removing forms in your terminal.Installation:
```
$ npm install -g formcarry-cli
```Login to Your Account:
```
$ formcarry login
```## Available Commands:
Command | Description
--- | ---
login | login to your formcarry account
add [options] | create a new form
delete | delete form with id
forms | List your forms## Create A New Form:
```
$ formcarry add "My Sweet Form"
```
Output:
```
✔ Your form was successfully created
✔ Your endpoint url copied to clipboard:
https://formcarry.com/s/BywEPAJNb
```### Available Options:
Option | Description
--- | ---
-n, --notify | notify those email adresses, split with comma
-r, --return | specify return url### With options:
```
$ formcarry add "My Sweet Form" -r "https://myreturnurl.io" -n "[email protected], [email protected]"
```
Output:
```
✔ Your form was successfully created
✔ Your endpoint url copied to clipboard:
https://formcarry.com/s/BywEPAJNb
```## Deleting Form:
```
$ formcarry delete BJedGRDQZ
```
Output:
```
✔ Your form was successfully deleted.
```## Listing Forms:
```
$ formcarry forms
```
Output:
```
┌───────────┬──────────────────┬─────────────────────────────┐
│ ID │ Name │ Created At │
├───────────┼──────────────────┼─────────────────────────────┤
│ rJwOBh6XZ │ First. │ June 26th 2017, 1:12:39 am │
├───────────┼──────────────────┼─────────────────────────────┤
│ BJedGRDQZ │ Second. │ June 21st 2017, 2:01:27 pm │
└───────────┴──────────────────┴─────────────────────────────┘
```