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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@builtioflow/connector-builder

v0.5.34

Published

Built.io Flow command line interface to create connectors and publish to Built.io Flow flow platform

Downloads

60

Readme

Built.io Flow connector builder

Install

npm i @builtioflow/connector-builder -g

Contents

Get Started

Built.io Flow connector builder is a Command Line Interface tool for Built.io Flow. It lets you build your own connectors for Built.io flow. Using Built.io Flow connector builder you can deploy your connector to Built.io and share it with others.

Commands

Following are the commands which Built.io Flow connector builder supports.

connectors

Use this command to display all the connectors created by current user.

  flow connectors

Sample Output:

| App Name  |      Version    |      created_at          |
|---------- |-----------------| -------------------------|
| Github    |   1.0           | 2017-06-19T14:22:23.485Z |
| Facebook  |   2.0           | 2017-06-20T11:11:24.485Z |
| Gmail     |   2.0           | 2017-06-23T10:03:22.485Z |

auth

Use this command to add an authentication for your connector.

  flow auth

create

Use this command to add a new trigger, action, lookup.

  flow create trigger new_push
  flow create action create_user
  flow create lookup list_users

deploy

Use this command for building and deploying the connector on Built.io Flow.

  flow deploy

download

Use this command for download a zip file of your connector.

  flow download

help

Use this command to list all the commands you can use.

  flow help

Sample Output:

|  Command    |    Example                           |                      Info                                  |
|----------   |--------------------------------------|------------------------------------------------------------|
| connectors  |   flow connectors                    | Lists all the connectors of the current user               |
| auth        |   flow auth                          | Adds an authentication for your connector                  |
| create      |   flow create trigger trigger_name   | Adds a new trigger, action and lookup                      |
| deploy      |   flow deploy                        | Builds and deploys connector on Built.io Flow              |
| download    |   flow download                      | Downloads zip of your connector                            |
| help        |   flow help                          | Lists all the commands                                     |
| history     |   flow history                       | Shows the activity history of your current connector       |
| init        |   flow init example                  | Initializes a new connector                                |
| login       |   flow login                         | Login to Built.io Flow account                             |
| logout      |   flow logout                        | Logout from Built.io Flow account                          |
| share       |   flow share                         | Shares your connector with other Built.io Flow users       |
| unshare     |   flow unshare                       | Unshares your connector from a specific user               |
| versions    |   flow versions                      | Lists all the versions of your current connector           |
| oauth       |   flow oauth deploy                  | Deploy custom user oauth to Built.io Flow                  |
| attach      |   flow attach lookup                 | To attach lookup in any specific actions or triggers field |
| detach      |   flow detach lookup                 | To detach lookup in any specific actions or triggers field |
| collaborate |   flow collaborate                   | To collaborate connector with other user                   |
| postman     |   flow postman [file.json]           | To import action from postman collection exported json     |


history

Use this command to view the complete history of your current connector.

  flow history

Sample Output:


|     User       |      Operation          | Message                |  Date & Time                |
|----------------|-------------------------|------------------------|-----------------------------|
| [email protected]  | Created trigger         | Name: Received email   | 2017-06-23T08:51:56.815Z    |
| [email protected]  | Created action          | Name: Save draft       | 2017-06-23T09:10:22.248Z    |
| [email protected]  | Deployed application    | Version: 1             | 2017-06-23T09:10:30.702Z    |

init

Use this command to create an initial project.

  flow init [path] [foldername] --template=minimal
  flow init example
  • Options
    • template - Optional template argument. Default minimal

login

Use this command for configuring your deploy key and logging into Built.io Flow

  flow login

logout

Use this command for deleting access token from your home directory.

  flow logout

share

Use this command for sharing your connector with other users.

  flow share

unshare

Use this command for unsharing your connector from a specific user.

  flow unshare

versions

Use this command for displaying all the versions and their status of the current connector.

  flow versions

Sample Output:

| App name  |   Version     |  Status   |
|---------- |:------------: |-----------|
| Github    |      1        | Published |
|           |      2        | Pending   |
-----------------------------------------

import

To import all swagger api calls as an action in connector.

  flow import <swagger file path>

oauth

To deploy custom user oauth to Built.io Flow

  flow oauth deploy

attach lookup

To attach lookup in any specific action's or trigger's input field.

  flow attach lookup

detach lookup

To detach lookup in any specific action's or trigger's input field.

  flow detach lookup

collaborate

To collaborate connector with other user

  flow collaborate

postman

To create actions from postman collections exported json

  flow postman [box-exported-v2.1.json]