Documentation
Sign In A circle arrowCreate Account

Documentation

  • Introduction

Quickstart

  • Node.js
    • Next.js

Node.js

Learn how to send your first feedback using the Remark Node.js SDK.

Prerequisites

To get the most out of this guide, you'll need to:

  • Create an account
  • Create an API key

1. Install

Get the Node.js SDK using your preferred package manager:

Terminal

2. Send a test feedback

server.ts

3. Try it yourself

Node.js example

See the full source code.


A circle arrowPrevious
Introduction
NextA circle arrow
Next.js
  • Developers

    • Docs
  • Resources

    • FAQs
  • Company

    • Contact
    • Notice
    • Terms

© 2025 All rights reserved.

  • X
  • GitHub
  • Discord
  • YouTube
npm install @remark-sh/sdk
import { Remark } from "@remark-sh/sdk";
const remark = new Remark("nu_123456789");
(async function () {
const { data, error } = await remark.feedbacks.send({
from: "delivered@remark.sh",
text: "Hello, world!",
});
if (error) {
return console.error({ error });
}
console.log({ data });
})();