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 🙏

© 2026 – Pkg Stats / Ryan Hefner

optimizely-sync

v0.20.2

Published

A command line application to sync code with Optimizely

Downloads

27

Readme

Optimizely Sync

This project provides a command line interface for pushing and pulling code to optimizely via the command line. This is especially useful for proper version control and peer review of A/B testing code that gets launched through Optimizely.

This project is forked from Optimizely-CLI, a command line tool that lets developers build Optimizely experiments faster. The package was originally developed by the folks at FunnelEnvy who found that (being stubborn engineers) they were more comfortable using our source editors and Git to develop locally - and this had a significant positive impact on their test velocity.

Optimizely Sync leaves in features from Optimizely-CLI, including a command line executable that also integrates with either the Tampermonkey (Google Chrome) or Greasemonkey (Firefox) extensions for local development / preview and the Optimizely API for publishing tests.

For more info on FunnelEnvy's Optimizely-CLI, check out their Optimizely-CLI page.

Installation

npm install -g optimizely-sync

This will install the optimizely executable on your system.

Dependencies

You'll need to have node.js installed locally to run optimizely and either the Tampermonkey or Greasemonkey extensions to view variations locally.

Quickstart

optimizely

View available commands

optimizely clone [project_id]

Initializes a new Optimizely project locally duplicating what Optimizely has.

optimizely pull [<experiment>|<experiment> <variation>]

Pulls changes from optimizely to the specified variation, experiment (all variations), or all experiments within the project.

Experiment and Variation specific pulling is NOT IMPLEMENTED yet

optimizely push [<experiment>|<experiment> <variation>]

Pushes changes from your local file system to Optimizely following the same rules as optimizely pull

Experiment and Variation specific pushing is NOT IMPLEMENTED yet

optimizely new-experiment <experiment> <description>

NOT IMPLEMENTED Checks to see if this experiment exists in Optimizely and pulls it into your working tree (where appropriate), otherwise creates a new experiment to be pushed later.

optimizely new-variation <experiment> <variation-number> <description>

NOT IMPLEMENTED Checks to see if this variation exists in the specified experiement in Optimizely and pulls it into your working tree (where appropriate), otherwise creates a new variation to be pushed later.

optimizely host [options] <path> [port]

Host a variation locally. Point your browser at http(s)://localhost:8080 (default port) for usage info.

Known Issues

  • Tests - We have some. We're adding more.

Release History

  • 0.20.2 Fixed reliance on removed code.
  • 0.20.1 Fixed readme giving the wrong command for init/clone
  • 0.20.0 Changed to Optimizely Sync. Changed binary name. -- Fork --
  • 0.15.0 Iteration option on push-experiment
  • 0.14.3 Added push-experiment, push-variation tests
  • 0.14.2 Show help when no arguments passed
  • 0.14.1 Bugfixes
  • 0.14.0 Move node client into separate module
  • 0.12.0 Bugfixes, more compliant with semver
  • 0.0.11 Separated create from push operations
  • 0.0.10 Refactored and cleanup
  • 0.0.7 Push
  • 0.0.2 Clone bug fix
  • 0.0.1 Initial release

Contributing

Please see CONTRIBUTING.md.

Copyright and license

Code copyright 2015 Celerius Group Inc. Modifications are copyright 2015 Retail Convergence Inc.

All other registered trademarks or trademarks are property of their respective owners.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.