title | sidebarTitle | description | icon |
---|---|---|---|
NodeJS + Express + Subtrace |
Express.js |
Connect your NodeJS + Express backend to Chrome DevTools using Subtrace |
node-js |
You can connect your NodeJS backend to Chrome DevTools using Subtrace so that you can can inspect the status, headers, payload, and latency of all requests. It takes just one command to integrate Subtrace.
For this guide, we'll use the following NodeJS + Express app as an example:
// app.js
const express = require('express');
const app = express();
const port = 3000;
app.get('/', (req, res) => {
res.send('Hello World!')
});
app.listen(port, () => {
console.log(`listening on port ${port}`)
});
Download the latest version of Subtrace using the following command:
curl -fsSLO "https://subtrace.dev/download/latest/$(uname -s)/$(uname -m)/subtrace"
chmod +x ./subtrace
And get a SUBTRACE_TOKEN
from the Subtrace dashboard
for free to set it as an environment variable.
# get a tracer token for free at https://subtrace.dev/dashboard
export SUBTRACE_TOKEN=
Start your server using Subtrace with the following command:
./subtrace run -- node app.js
Send some requests to localhost:3000
to see them automatically appear in
Chrome DevTools in the Subtrace dashboard!