Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Returns an array of shader IDs based on the query string. See the documentation
The Shadertoy API opens a window to a universe of visual creations by providing programmatic access to a wealth of shaders created by the Shadertoy community. These shaders are snippets of GLSL code that produce stunning graphics and visual effects. In Pipedream, you can leverage this API to trigger workflows that interact with these shaders, such as retrieving shader information, displaying shader visuals, or even monitoring the latest creations. By combining Shadertoy API with Pipedream's capability to connect to numerous other services, your creative and technical projects can flourish with dynamic, visually rich content.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
shadertoy: {
type: "app",
app: "shadertoy",
}
},
async run({steps, $}) {
return await axios($, {
url: ` https://www.shadertoy.com/api/v1/shaders/query/test`,
params: {
key: `${this.shadertoy.$auth.app_key}`,
},
})
},
})