Pipedream
Explore
Connect
Docs
Changelog
Pricing
Templates
Partners
String
Sign in
Sign up
test postback generator
•
@lucnt
•
•
code:
public
private
•
data:
private
•
last updated:
5 years ago
Workflow
README
trigger
Trigger on HTTP requests and return a custom re...
nodejs
Write Node.js and use npm
@lucnt
/
test postback generator
Usage Tips
All workflow code on Pipedream is
public
and run on every event. All event data is
private
.
Send data to Airtable, S3, Snowflake or HTTP out using code
actions
.
Event data is accessible in the
$event
object — add, update, or delete properties of this object in code.
Use
$end()
to stop your workflow or $respond to return a response to the client.
Most of NPM’s 400,000 packages are available for use — just
require()
them.
Store API keys or secrets as
environment variables
and access via
process.env.KEY_NAME
.
await
the execution of async code with Promises, using
async / await
.
You need to await the execution of async code with
Promises
, using
async / await
—
learn more here