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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@optimizely/optimizely-connector

v1.0.17

Published

A connector is an interface that connects your application to external/third-parrty providers. Adding the Optimizely connector to your application will allow you to connect an existing Optimizely account to your application and will allow you set up and r

Readme

A connector is an interface that connects your application to external/third-parrty providers. Adding the Optimizely connector to your application will allow you to connect an existing Optimizely account to your application and will allow you set up and run experiments on your pages

Note: Before Adding

To use the Node Optimizely Connector v1.0 you will have to deploy the Optimizely Retail Server Extension to your Retail Server. The extension will expose a new endpoint on your Retail Server which the Node connector will use to fetch the list of experiments

Read here for detailed documentation on the Optimizely Retail Server Extension.

Future versions (v2.0) and greater of the optimizely-connector requires your Retail Server version to be 10.0.14 or greater and corresponding retail-server-proxy to be 9.24.2 or greater.

Setting up your Connector Settings

The connector requires the following config information in connector.settings.json (found under src/settings)

  1. sdkKey: A sdkKey is a key associated with an environment in the project to instantiate a client. This information is requried.

  2. refreshTime: refresh time controls the update interval of the Optimizely SDK how often to poll for the latest changes made to your features is measured in seconds. The refreshTime should match the cache settings provided for the datafile to keep your server and client instances in sync.

  3. projectId: The project id of your Optimizely project

  4. oun: The operating unit number of the online store. This is used to retrieve the opttimizely access token from the Key Vault.

Provisioning an Optimizely API Access Token in Retail Server

Along with configuring the above in your connector.settings.json you will also need to create a secret key with the name 'OptimizelyAccessToken' in your Retail Server keyvault. The value should be a valid Optimizely personal API access token, that can make requests to the project id being used.