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

dec-client

v1.0.12

Published

Digital Experience Cloud client for Node.js

Downloads

20

Readme

Digital Experience Cloud Client

Unofficial client for the Sitefinity Digital Experience Cloud.

For additional information, please see the Digital Experience Cloud documentation.

Installing

npm install dec-client

Then within your application, you can reference the client with the following:

var DECClient = require('dec-client');

Usage

Create a new DECClient(). Make sure to provide your data center API key, and a source label.

var client = new DECClient({
     apiKey: 'your-api-key',
     source: 'your-datasource-label'
});

Writing Sentences

Sentence documentation

client.writeSentence({
    subjectKey: 'the-subject-key',
    predicate: 'the-predicate',
    object: 'the-object'
});

Tracking Subject Metadata

Subject Metadata documentation

client.writeSubjectMetadata('the-subject-key', {
    FirstName: 'first-name',
    LastName: 'last-name',
    Email: 'contact-email'
    // additional meta fields...
});

Adding Subject Mapping

Subject Mapping documentation

client.addMapping('the-subject-key', 'second-subject-key', 'second-datasource-label');

Sending Sentences to the Digital Experience Cloud

The client allows you to write multiple interactions [sentences] at a time. Once all interactions have been written, you must flushData() to actually send them to the DEC.

// returns a promise
client.flushData();

Personalization

You can make a call to the DEC to retrieve information about the subject's Personas, Campaigns, and Lead Scores.

Create a new DECClient(). Make sure to provide your data center API key, a source label, and an authToken.

var client = new DECClient({
     apiKey: 'your-api-key',
     source: 'your-datasource-label',
     authToken: 'appauth your-app-auth-key'
});

The authToken is used by an authorized application to request data from the personalization end-points. You can construct the token by concatenating the "appauth " string with the Access Key of the authorized application, for example: "appauth 94e8b2d2-931e-cd01-b57b-07fa2013cb24".

An Authorized Application can be configured by navigating to the "Authorized applications" in the Administration section of your Data Center.

client.isInPersonas('1', 'the-subject-key')
.then(function (response) {
    var personas = JSON.parse(response).items;

    if (personas.length) {
        // do something
    }
})

Example Response

{"items":[{"Id":1,"Score":100,"ThresholdPassedOn":"2017-08-11T01:45:21.120Z","Threshold":100}]}