npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

loops

v3.3.0

Published

## Introduction

Downloads

52,950

Readme

Loops JavaScript/TypeScript SDK

Introduction

This is the official JavaScript SDK for Loops, with full TypeScript support.

It lets you easily integrate with the Loops API in any JavaScript project.

Installation

You can install the package from npm:

npm install loops

Minimum Node version required: 18.0.0.

You will need a Loops API key to use the package.

In your Loops account, go to the API Settings page and click "Generate key".

Copy this key and save it in your application code (for example as LOOPS_API_KEY in an .env file).

See the API documentation to learn more about rate limiting and error handling.

Usage

import { LoopsClient } from "loops";

const loops = new LoopsClient(process.env.LOOPS_API_KEY);

const resp = await loops.createContact("[email protected]");

Default contact properties

Each contact in Loops has a set of default properties. These will always be returned in API results.

  • id
  • email
  • firstName
  • lastName
  • source
  • subscribed
  • userGroup
  • userId

Custom contact properties

You can use custom contact properties in API calls. Please make sure to add custom properties in your Loops account before using them with the SDK.

Methods


testApiKey()

Test that an API key is valid.

API Reference

Parameters

None

Example

const resp = await loops.testApiKey();

Response

This method will return a success or error message:

{
  "success": true,
  "teamName": "My team"
}
{
  "error": "Invalid API key"
}

createContact()

Create a new contact.

API Reference

Parameters

| Name | Type | Required | Notes | | -------------- | ------ | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | email | string | Yes | If a contact already exists with this email address, an error response will be returned. | | properties | object | No | An object containing default and any custom properties for your contact.Please add custom properties in your Loops account before using them with the SDK.Values can be of type string, number, null (to reset a value), boolean or date (see allowed date formats). | | mailingLists | object | No | An object of mailing list IDs and boolean subscription statuses. |

Examples

const resp = await loops.createContact("[email protected]");

const contactProperties = {
  firstName: "Bob" /* Default property */,
  favoriteColor: "Red" /* Custom property */,
};
const mailingLists = {
  cm06f5v0e45nf0ml5754o9cix: true,
  cm16k73gq014h0mmj5b6jdi9r: false,
};
const resp = await loops.createContact(
  "[email protected]",
  contactProperties,
  mailingLists
);

Response

This method will return a success or error message:

{
  "success": true,
  "id": "id_of_contact"
}
{
  "success": false,
  "message": "An error message here."
}

updateContact()

Update a contact.

Note: To update a contact's email address, the contact requires a userId value. Then you can make a request with their userId and an updated email address.

API Reference

Parameters

| Name | Type | Required | Notes | | -------------- | ------ | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | email | string | Yes | The email address of the contact to update. If there is no contact with this email address, a new contact will be created using the email and properties in this request. | | properties | object | No | An object containing default and any custom properties for your contact.Please add custom properties in your Loops account before using them with the SDK.Values can be of type string, number, null (to reset a value), boolean or date (see allowed date formats). | | mailingLists | object | No | An object of mailing list IDs and boolean subscription statuses. |

Example

const contactProperties = {
  firstName: "Bob" /* Default property */,
  favoriteColor: "Blue" /* Custom property */,
};
const resp = await loops.updateContact("[email protected]", contactProperties);

/* Updating a contact's email address using userId */
const resp = await loops.updateContact("[email protected]", {
  userId: "1234",
});

Response

This method will return a success or error message:

{
  "success": true,
  "id": "id_of_contact"
}
{
  "success": false,
  "message": "An error message here."
}

findContact()

Find a contact.

API Reference

Parameters

You must use one parameter in the request.

| Name | Type | Required | Notes | | -------- | ------ | -------- | ----- | | email | string | No | | | userId | string | No | |

Examples

const resp = await loops.findContact({ email: "[email protected]" });

const resp = await loops.findContact({ userId: "12345" });

Response

This method will return a list containing a single contact object, which will include all default properties and any custom properties.

If no contact is found, an empty list will be returned.

[
  {
    "id": "cll6b3i8901a9jx0oyktl2m4u",
    "email": "[email protected]",
    "firstName": "Bob",
    "lastName": null,
    "source": "API",
    "subscribed": true,
    "userGroup": "",
    "userId": "12345",
    "mailingLists": {
      "cm06f5v0e45nf0ml5754o9cix": true
    },
    "favoriteColor": "Blue" /* Custom property */
  }
]

deleteContact()

Delete a contact, either by email address or userId.

API Reference

Parameters

You must use one parameter in the request.

| Name | Type | Required | Notes | | -------- | ------ | -------- | ----- | | email | string | No | | | userId | string | No | |

Example

const resp = await loops.deleteContact({ email: "[email protected]" });

const resp = await loops.deleteContact({ userId: "12345" });

Response

This method will return a success or error message:

{
  "success": true,
  "message": "Contact deleted."
}
{
  "success": false,
  "message": "An error message here."
}

getMailingLists()

Get a list of your account's mailing lists. Read more about mailing lists

API Reference

Parameters

None

Example

const resp = await loops.getMailingLists();

Response

This method will return a list of mailing list objects containing id, name and isPublic attributes.

If your account has no mailing lists, an empty list will be returned.

[
  {
    "id": "cm06f5v0e45nf0ml5754o9cix",
    "name": "Main list",
    "isPublic": true
  },
  {
    "id": "cm16k73gq014h0mmj5b6jdi9r",
    "name": "Investors",
    "isPublic": false
  }
]

sendEvent()

Send an event to trigger an email in Loops. Read more about events

API Reference

Parameters

| Name | Type | Required | Notes | | ------------------- | ------ | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | email | string | No | The contact's email address. Required if userId is not present. | | userId | string | No | The contact's unique user ID. If you use userID without email, this value must have already been added to your contact in Loops. Required if email is not present. | | eventName | string | Yes | | | contactProperties | object | No | An object containing contact properties, which will be updated or added to the contact when the event is received.Please add custom properties in your Loops account before using them with the SDK.Values can be of type string, number, null (to reset a value), boolean or date (see allowed date formats). | | eventProperties | object | No | An object containing event properties, which will be made availabe in emails that are triggered by this event.Values can be of type string, number, boolean or date (see allowed date formats). | | mailingLists | object | No | An object of mailing list IDs and boolean subscription statuses. |

Examples

const resp = await loops.sendEvent({
  email: "[email protected]",
  eventName: "signup",
});

const resp = await loops.sendEvent({
  email: "[email protected]",
  eventName: "signup",
  eventProperties: {
    username: "user1234",
    signupDate: "2024-03-21T10:09:23Z",
  },
  mailingLists: {
    cm06f5v0e45nf0ml5754o9cix: true,
    cm16k73gq014h0mmj5b6jdi9r: false,
  },
});

// In this case with both email and userId present, the system will look for a contact with either a
//  matching `email` or `userId` value.
// If a contact is found for one of the values (e.g. `email`), the other value (e.g. `userId`) will be updated.
// If a contact is not found, a new contact will be created using both `email` and `userId` values.
// Any values added in `contactProperties` will also be updated on the contact.
const resp = await loops.sendEvent({
  userId: "1234567890",
  email: "[email protected]",
  eventName: "signup",
  contactProperties: {
    firstName: "Bob",
    plan: "pro",
  },
});

Response

This method will return a success or error:

{
  "success": true
}
{
  "success": false,
  "message": "An error message here."
}

sendTransactionalEmail()

Send a transactional email to a contact. Learn about sending transactional email

API Reference

Parameters

| Name | Type | Required | Notes | | --------------------------- | -------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | transactionalId | string | Yes | The ID of the transactional email to send. | | email | string | Yes | The email address of the recipient. | | addToAudience | boolean | No | If true, a contact will be created in your audience using the email value (if a matching contact doesn’t already exist). | | dataVariables | object | No | An object containing data as defined by the data variables added to the transactional email template.Values can be of type string or number. | | attachments | object[] | No | A list of attachments objects.Please note: Attachments need to be enabled on your account before using them with the API. Read more | | attachments[].filename | string | No | The name of the file, shown in email clients. | | attachments[].contentType | string | No | The MIME type of the file. | | attachments[].data | string | No | The base64-encoded content of the file. |

Examples

const resp = await loops.sendTransactionalEmail({
  transactionalId: "clfq6dinn000yl70fgwwyp82l",
  email: "[email protected]",
  dataVariables: {
    loginUrl: "https://myapp.com/login/",
  },
});

// Please contact us to enable attachments on your account.
const resp = await loops.sendTransactionalEmail({
  transactionalId: "clfq6dinn000yl70fgwwyp82l",
  email: "[email protected]",
  dataVariables: {
    loginUrl: "https://myapp.com/login/",
  },
  attachments: [
    {
      filename: "presentation.pdf",
      contentType: "application/pdf",
      data: "JVBERi0xLjMKJcTl8uXrp/Og0MTGCjQgMCBvYmoKPD...",
    },
  ],
});

Response

This method will return a success or error message.

{
  "success": true
}

If there is a problem with the request, a descriptive error message will be returned:

{
  "success": false,
  "path": "dataVariables",
  "message": "There are required fields for this email. You need to include a 'dataVariables' object with the required fields."
}
{
  "success": false,
  "error": {
    "path": "dataVariables",
    "message": "Missing required fields: login_url"
  },
  "transactionalId": "clfq6dinn000yl70fgwwyp82l"
}

getCustomFields()

Get a list of your account's custom fields. These are custom properties that can be added to contacts to store extra data. Read more about contact properties

API Reference

Parameters

None

Example

const resp = await loops.getCustomFields();

Response

This method will return a list of custom field objects containing key, label and type attributes.

If your account has no custom fields, an empty list will be returned.

[
  {
    "key": "favoriteColor",
    "label": "Favorite Color",
    "type": "string"
  },
  {
    "key": "plan",
    "label": "Plan",
    "type": "string"
  }
]

Version history

  • v3.3.0 (Sep 9, 2024) - Added testApiKey() method.
  • v3.2.0 (Aug 23, 2024) - Added support for a new mailingLists attribute in findContact().
  • v3.1.1 (Aug 16, 2024) - Support for a new isPublic attribute in getMailingLists().
  • v3.1.0 (Aug 12, 2024) - The SDK now accepts null as a value for contact properties in createContact(), updateContact() and sendEvent(), which allows you to reset/empty properties.
  • v3.0.0 (Jul 2, 2024) - sendTransactionalEmail() now accepts an object instead of separate parameters (breaking change).
  • v2.2.0 (Jul 2, 2024) - Deprecated. Added new addToAudience option to sendTransactionalEmail().
  • v2.1.1 (Jun 20, 2024) - Added support for mailing lists in createContact(), updateContact() and sendEvent().
  • v2.1.0 (Jun 19, 2024) - Added support for new List mailing lists endpoint.
  • v2.0.0 (Apr 19, 2024)
    • Added userId as a parameter to findContact(). This includes a breaking change for the findContact() parameters.
    • userId values must now be strings (could have also been numbers previously).
  • v1.0.1 (Apr 1, 2024) - Fixed types for sendEvent().
  • v1.0.0 (Mar 28, 2024) - Fix for ESM types. Switched to named export.
  • v0.4.0 (Mar 22, 2024) - Support for new eventProperties in sendEvent(). This includes a breaking change for the sendEvent() parameters.
  • v0.3.0 (Feb 22, 2024) - Updated minimum Node version to 18.0.0.
  • v0.2.1 (Feb 6, 2024) - Fix for ESM imports.
  • v0.2.0 (Feb 1, 2024) - CommonJS support.
  • v0.1.5 (Jan 25, 2024) - getCustomFields() now returns type values for each contact property.
  • v0.1.4 (Jan 25, 2024) - Added support for userId in sendEvent() request. Added missing error response type for sendEvent() requests.
  • v0.1.3 (Dec 8, 2023) - Added support for transactional attachments.
  • v0.1.2 (Dec 6, 2023) - Improved transactional error types.
  • v0.1.1 (Nov 1, 2023) - Initial release.