27 lines
744 B
Plaintext
27 lines
744 B
Plaintext
---
|
|
title: "Node.js setup guide"
|
|
sidebarTitle: "Node.js"
|
|
description: "This guide will show you how to setup Trigger.dev in your existing Node.js project, test an example task, and view the run."
|
|
icon: "node-js"
|
|
---
|
|
|
|
import Prerequisites from "/snippets/framework-prerequisites.mdx";
|
|
import CliInitStep from "/snippets/step-cli-init.mdx";
|
|
import CliDevStep from "/snippets/step-cli-dev.mdx";
|
|
import CliRunTestStep from "/snippets/step-run-test.mdx";
|
|
import CliViewRunStep from "/snippets/step-view-run.mdx";
|
|
import UsefulNextSteps from "/snippets/useful-next-steps.mdx";
|
|
|
|
<Prerequisites framework="Node.js" />
|
|
|
|
## Initial setup
|
|
|
|
<Steps>
|
|
<CliInitStep />
|
|
<CliDevStep />
|
|
<CliRunTestStep />
|
|
<CliViewRunStep />
|
|
</Steps>
|
|
|
|
<UsefulNextSteps />
|